/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    
    /* iPhone Status Bar Support */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* iPhone Status Bar Background */
@supports (padding: max(0px)) {
    body {
        padding-top: max(env(safe-area-inset-top), 0px);
        padding-bottom: max(env(safe-area-inset-bottom), 0px);
        padding-left: max(env(safe-area-inset-left), 0px);
        padding-right: max(env(safe-area-inset-right), 0px);
    }
}

/* Header Stilleri - Tamamen Yeniden Tasarlandı */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    
    /* iPhone Status Bar Integration */
    margin-top: calc(-1 * env(safe-area-inset-top));
    padding-top: calc(3rem + env(safe-area-inset-top));
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-text {
    text-align: left;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    color: #e2e8f0;
    letter-spacing: 0.01em;
}

/* Şifre Form Stilleri - Yeniden Tasarlandı */
.password-form {
    margin-top: 2rem;
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(248, 250, 252, 0.8);
    padding: 0 1.5rem;
    position: relative;
}

.input-icon {
    color: #64748b;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.password-input {
    flex: 1;
    padding: 1.2rem 0;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: #1e293b;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.password-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.login-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.login-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.login-btn:hover i {
    transform: translateX(3px);
}

/* Dekoratif Elementler */
.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Ana İçerik Stilleri */
.main-content {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Giriş Öncesi İçerik Kutusu */
.content-box {
    background: white;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-container {
    margin-bottom: 2rem;
}

.icon-large {
    font-size: 4rem;
    color: #64748b;
    opacity: 0.7;
}

.instruction-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.instruction-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

/* Müşteri Dashboard Stilleri */
.customer-dashboard {
    width: 100%;
    max-width: 1200px;
}

/* İstatistik Sekmeleri */
.stats-tabs-container {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.stats-tabs {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.stats-tabs::-webkit-scrollbar {
    display: none;
}

.stat-tab {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 140px;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.stat-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-tab.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.stat-tab[data-filter="all"] .tab-icon {
    background: linear-gradient(135deg, #64748b, #475569);
}

.stat-tab[data-filter="Aranacak"] .tab-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-tab[data-filter="Bağlanan İş"] .tab-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-tab[data-filter="İptal"] .tab-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-tab[data-filter="Düşünüyor"] .tab-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tab-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    letter-spacing: -0.02em;
}

.tab-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Müşteri Listesi */
.customer-list-container {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.customer-list {
    display: grid;
    gap: 1rem;
}

.customer-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    border: 1px solid #e2e8f0;
}

.customer-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.customer-details {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.customer-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.action-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
}

.phone-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.process-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.process-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.customer-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.status-pending .status-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.status-success .status-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.status-cancelled .status-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.status-thinking .status-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Sola kaydırma menüsü güvenlik için kaldırıldı */

/* Müşteri Listesi Başlığı */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.list-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.admin-btn-small {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.admin-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Admin Tab Styling */
.admin-tab {
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Yeni Kart Tasarımı */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
}

.customer-info {
    flex: 1;
}

.clickable-info {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    margin: -0.5rem;
    position: relative;
    z-index: 1;
    margin-right: 5rem;
}

.clickable-info:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(2px);
}

.clickable-info:hover .customer-name {
    color: #8b5cf6;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.customer-company {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Process button artık kullanılmıyor - ad soyada tıklama ile değiştirildi */

.card-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.action-btn-half {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.action-btn-half.phone-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.action-btn-half.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.action-btn-half.whatsapp-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.action-btn-half.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* Çıkış Butonu */
.logout-container {
    text-align: center;
    margin-top: 2rem;
}

.logout-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    font-family: 'Inter', sans-serif;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header {
        padding: 2rem 1rem 3rem;
    }
    
    .brand-section {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .password-input,
    .login-btn {
        border-radius: 0;
    }
    
    .password-input {
        border-radius: 16px 16px 0 0;
    }
    
    .login-btn {
        border-radius: 0 0 16px 16px;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .content-box {
        padding: 2rem 1.5rem;
    }
    
    .stats-tabs {
        gap: 0.5rem;
        padding: 0.3rem;
    }
    
    .stat-tab {
        padding: 1rem;
        min-width: 120px;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tab-number {
        font-size: 1.5rem;
    }
    
    .tab-label {
        font-size: 0.8rem;
    }
    
    .customer-list-container {
        padding: 1rem;
    }
    
    .list-header {
        margin-bottom: 0.8rem;
        padding: 0;
    }
    
    .list-title {
        font-size: 1.1rem;
    }
    
    .admin-btn-small {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Process button kaldırıldı */
    
    .action-btn-half {
        padding: 0.7rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .customer-company {
        font-size: 0.8rem;
    }
    
    .customer-item {
        padding: 1rem;
    }
    
    .customer-actions {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .action-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .icon-large {
        font-size: 3rem;
    }
    
    .instruction-title {
        font-size: 1.5rem;
    }
    
    .stat-tab {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .tab-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .tab-number {
        font-size: 1.3rem;
    }
    
    .tab-label {
        font-size: 0.7rem;
    }
}

/* Modal Stilleri - Minimalist */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.customer-info-mini {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.customer-info-mini h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.customer-info-mini p {
    color: #64748b;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.system-notes-display {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.system-note-item {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #667eea;
    font-size: 0.9rem;
    color: #4b5563;
}

.system-note-item:last-child {
    margin-bottom: 0;
}

.no-system-notes {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .customer-actions {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .action-btn {
        flex: 1;
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
} 