/* TurkoPos - Profesyonel Halı Yıkama Yönetim Sistemi */

/* ===== CSS VARIABLES - Kurumsal Tema (Yeni) ===== */
:root {
    /* Ana Renkler - Daha Modern ve Profesyonel */
    --primary-color: #1a5490;
    /* Koyu profesyonel mavi */
    --primary-dark: #0f3d6b;
    /* Daha koyu mavi */
    --primary-light: #2563b8;
    /* Açık mavi */
    --secondary-color: #2196f3;
    /* Profesyonel mavi */
    --accent-color: #ff7849;
    /* Canlı turuncu accent */

    /* Halı Yıkama Sektörüne Özel Renkler */
    --carpet-blue: #1976d2;
    --clean-white: #ffffff;
    --water-blue: #03a9f4;
    --soap-foam: #e3f2fd;

    /* Arka Plan */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e8f4f8;
    --bg-card: #fafbfc;

    /* Metin Renkleri - WCAG AA Uyumlu */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;

    /* Gradients - Modern */
    --gradient-primary: linear-gradient(135deg, #1a5490 0%, #2563b8 100%);
    --gradient-hero: linear-gradient(135deg, #1a5490 0%, #1976d2 50%, #03a9f4 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

    /* Shadows - Daha Soft */
    --shadow-card: 0 2px 12px rgba(26, 84, 144, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 84, 144, 0.15);
    --shadow-hover: 0 12px 40px rgba(26, 84, 144, 0.2);

    /* Spacing Scale - Tutarlı */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
}

/* ===== RESET VE TEMEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 25px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== LOGIN SCREEN - SPLIT SCREEN TASARIM ===== */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-split {
    display: flex;
    width: 100%;
    height: 100%;
}

/* ===== SOL PANEL: LOGO + FORM ===== */
.login-left-panel {
    width: 50%;
    min-width: 0;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    overflow-y: auto;
}

.login-left-content {
    width: 100%;
    max-width: 440px;
}

.login-brand {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    height: 140px;
    max-width: 320px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
    animation: fadeInDown 0.6s ease;
}

/* ===== SAĞ PANEL: FEATURE SHOWCASE ===== */
.login-right-panel {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #0A2F45 0%, #1A5F7A 50%, #0f3d5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Dekoratif arka plan ögeleri */
.login-right-panel::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.login-right-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.login-right-content {
    max-width: 620px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.right-panel-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease;
}

.right-panel-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.6;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

/* ===== FEATURE GRID (3 SÞTUN) ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 16px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease backwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.15s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.25s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.35s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-card h3 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.8rem;
    opacity: 0.6;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

/* ===== LOGIN FORM SECTION ===== */
.login-form-section {
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.login-form-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 40px 38px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Login Form Scrollbar Styling */
.login-right::-webkit-scrollbar {
    width: 8px;
}

.login-right::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.login-right::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.login-right::-webkit-scrollbar-thumb:hover {
    background: #0a4d75;
}

.login-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A2F45;
    margin-bottom: 8px;
}

.login-form-header p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* 🎯 Login Error Message - Form içinde gösterilen hata mesajı */
.login-error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #991b1b;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.login-error-message::before {
    content: '⚠️';
    font-size: 1.3rem;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.login-header p {
    color: #64748b;
    font-size: 14px;
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0A2F45;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
}

/* Telefon Input Özel Tasarım */
.phone-input {
    position: relative;
    display: flex;
    align-items: stretch;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 48px;
}

.phone-input:focus-within {
    border-color: #0A2F45;
    box-shadow: 0 0 0 3px rgba(10, 47, 69, 0.1);
    transform: scale(1.01);
}

.phone-input:hover:not(:focus-within) {
    border-color: #cbd5e1;
}

.phone-prefix {
    background: linear-gradient(135deg, #0A2F45, #1A5F7A);
    color: white;
    padding: 0 14px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px 0 0 10px;
}

.phone-input input {
    flex: 1;
    padding: 0 16px;
    border: none !important;
    background: transparent !important;
    font-size: 16px;
    outline: none !important;
    height: 100%;
    box-shadow: none !important;
}

.form-group input[type="password"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    box-sizing: border-box;
}

.form-group input[type="password"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #0A2F45;
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 47, 69, 0.1);
    transform: scale(1.01);
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

.form-group input[type="password"]:hover:not(:focus),
.form-group input[type="text"]:hover:not(:focus),
.form-group input[type="email"]:hover:not(:focus),
.form-group input[type="tel"]:hover:not(:focus) {
    border-color: #cbd5e1;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0A2F45 0%, #1A5F7A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 47, 69, 0.25);
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(10, 47, 69, 0.45);
    background: linear-gradient(135deg, #1A5F7A 0%, #0A2F45 100%);
}

.login-btn:active {
    transform: translateY(0) scale(0.98);
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.login-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.register-link {
    color: #1A5F7A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #0A2F45;
    text-decoration: underline;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.success-message {
    background: #d1fae5;
    color: #059669;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

/* Dashboard Layout */
.dashboard {
    display: grid;
    grid-template-areas:
        "header header"
        "sidebar main";
    grid-template-rows: 70px 1fr;
    grid-template-columns: 250px 1fr;
    height: 100vh;
    width: 100vw;
    transition: all 0.3s ease;
    overflow: visible;
}

.dashboard.sidebar-collapsed {
    grid-template-columns: 60px 1fr;
}

/* Header */
.dashboard-header {
    grid-area: header;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: #f3f4f6;
    color: #374151;
}

.dashboard-header h1 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Firma Bilgileri Header */
.company-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.company-name-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.company-name-badge i {
    color: #fff;
    font-size: 16px;
}

.company-name-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.subscription-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.subscription-badge.active {
    background: rgba(34, 197, 94, 0.3);
}

.subscription-badge.warning {
    background: rgba(251, 191, 36, 0.3);
}

.subscription-badge.expired {
    background: rgba(239, 68, 68, 0.3);
}

.subscription-badge i {
    color: #fff;
    font-size: 12px;
}

.subscription-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

/* Responsive - Küçük ekranlarda firma bilgilerini gizle */
@media (max-width: 1024px) {
    .company-info-header {
        display: none;
    }
}

/* Üyelik Satın Al Butonu */
.buy-subscription-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.buy-subscription-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.buy-subscription-btn:active {
    transform: translateY(0);
}

.buy-subscription-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .buy-subscription-btn span {
        display: none;
        /* Mobilde sadece icon */
    }

    .buy-subscription-btn {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 10px;
    }

    .user-profile-header span {
        display: none;
        /* Kullanıcı adını gizle, sadece icon göster */
    }

    .logout-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .logout-btn i {
        margin-right: 0;
    }

    .logout-btn .fa-sign-out-alt::after {
        content: none;
        /* "Çıkış" yazısını gizle */
    }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-profile-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.user-icon {
    color: #667eea;
    font-size: 16px;
}

.user-info span {
    font-weight: 500;
    color: #374151;
}

.logout-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Professional Sidebar */
.sidebar {
    grid-area: sidebar;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: none;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    overflow: visible;
    /* Allow horizontal overflow for submenus */
    color: white;
    position: relative;
}

/* Sidebar Brand */
.sidebar-brand {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.brand-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.brand-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Navigation Groups */
.nav-group {
    margin: 25px 0;
    overflow: visible !important;
    /* Allow submenus to show */
}

.sidebar-nav {
    overflow: visible !important;
    /* Allow submenus to show */
}

.nav-group-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible !important;
    /* Allow submenus to show */
}

.nav-item {
    margin: 3px 12px;
    position: relative;
    overflow: visible !important;
    /* Allow submenu to show */
}

.nav-item.has-submenu {
    overflow: visible !important;
    position: relative !important;
}

.nav-item a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    /* overflow: hidden; Removed to allow submenu visibility */
}

/* Special handling for nav-item links that don't have submenus */
.nav-item:not(.has-submenu) a {
    overflow: hidden;
}

.nav-item a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(5px);
}

.nav-item.active a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateX(5px);
}

.nav-item.active .nav-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: white;
    border-radius: 0 4px 4px 0;
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.nav-text {
    flex: 1;
    font-size: 14px;
}

.nav-badge {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 18px;
    text-align: center;
}

/* Collapsed Sidebar States */
.dashboard.sidebar-collapsed {
    grid-template-columns: 80px 1fr;
}

.dashboard.sidebar-collapsed .brand-text,
.dashboard.sidebar-collapsed .nav-text,
.dashboard.sidebar-collapsed .nav-group-title,
.dashboard.sidebar-collapsed .nav-badge,
.dashboard.sidebar-collapsed .user-info {
    display: none;
}

.dashboard.sidebar-collapsed .sidebar-brand {
    justify-content: center;
    padding: 25px 15px;
}

.dashboard.sidebar-collapsed .nav-item a {
    justify-content: center;
    padding: 14px;
}

.dashboard.sidebar-collapsed .nav-icon {
    margin-right: 0;
}

/* Submenu Styles */
.nav-item.has-submenu .nav-parent {
    position: relative;
}

.nav-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.nav-item.expanded .nav-arrow {
    transform: rotate(180deg);
}

/* SUBMENU - ULTRA GÜÇLENDİRİLMİŞ HALİ */
.nav-submenu {
    list-style: none !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    background: rgba(30, 41, 59, 0.95) !important;
    border-radius: 0 0 8px 8px !important;
    width: 100% !important;
    display: none !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* JavaScript tarafından style attribute ile kontrol edilecek */
.nav-submenu[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 50px !important;
}

/* Expanded durumunda submenu'yu göster */
.nav-item.expanded .nav-submenu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 50px !important;
}

.nav-subitem {
    margin: 2px 8px;
    padding: 0;
}

.nav-subitem a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 13px;
    position: relative;
    border-left: 3px solid transparent;
    margin: 2px 0;
}

.nav-subitem a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border-left-color: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.nav-subitem.active a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #667eea;
}

/* Force nav-subitem visibility when parent is expanded */
.nav-item.expanded .nav-subitem,
.nav-item.has-submenu.expanded .nav-subitem {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.nav-item.expanded .nav-subitem a,
.nav-item.has-submenu.expanded .nav-subitem a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Simplified approach - let JavaScript fully control submenu visibility */

.nav-subicon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}

.nav-subtext {
    flex: 1;
}

.nav-subbadge {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
}

/* Status Badge Colors */
.pickup-badge {
    background: #f59e0b !important;
    color: white !important;
}

.washing-badge {
    background: #3b82f6 !important;
    color: white !important;
}

.ready-badge {
    background: #10b981 !important;
    color: white !important;
}

.delivery-badge {
    background: #8b5cf6 !important;
    color: white !important;
}

/* Submenu Styles - High Specificity Version */
.sidebar .nav-item .nav-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sidebar .nav-item.expanded .nav-arrow {
    transform: rotate(180deg) !important;
}

/* Collapsed Sidebar Submenu */
.dashboard.sidebar-collapsed .nav-submenu {
    display: none !important;
}

/* Ensure sidebar shows submenu properly */
.sidebar {
    overflow-y: visible !important;
}

.nav-item.expanded {
    position: relative;
    z-index: 100;
}

.dashboard.sidebar-collapsed .nav-arrow {
    display: none;
}

/* Main Content */
.main-content {
    grid-area: main;
    overflow: visible;
    background: #f8fafc;
    min-height: calc(100vh - 70px);
    width: 100%;
    max-width: none;
}

.page-content {
    padding: 20px;
    max-width: none;
    margin: 0;
    width: 100%;
    min-height: calc(100vh - 110px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
    }

    .login-left {
        display: none;
    }

    .login-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .login-right {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .login-form-header h2 {
        font-size: 1.5rem;
    }

    .dashboard {
        grid-template-areas:
            "header"
            "main";
        grid-template-rows: 70px 1fr;
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -250px;
        top: 70px;
        height: calc(100vh - 70px);
        width: 250px;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .page-content {
        padding: 20px;
    }

    .login-container {
        margin: 20px;
        padding: 30px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* ===== MODAL STYLES - Müşteri Ekleme Modal ===== */
.modal.fade {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-dialog {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - 40px);
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    /* Viewport height'ın maksimum %85'i */
    max-width: 600px;
    width: 90%;
    margin: auto;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-bottom: none;
    flex-shrink: 0;
}

.modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-header .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.modal-header .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    flex: 1;
    max-height: calc(80vh - 160px);
    /* Viewport height'ın %80'inden header ve footer'ı çıkar */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f7fafc;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.modal-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 16px 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-footer .btn {
    min-width: 100px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.modal-footer .btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
    border: 1px solid #cbd5e0;
}

.modal-footer .btn-secondary:hover {
    background: #cbd5e0;
}

.modal-footer .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.modal-footer .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Form Styles in Modal */
.address-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.address-section h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.form-control:disabled {
    background-color: #f9fafb;
    cursor: not-allowed;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.col-md-4,
.col-md-6,
.col-md-12 {
    padding: 0 8px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Address Preview */
.address-preview {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
}

.address-preview small {
    color: #0369a1;
}

#previewText {
    font-style: italic;
}

/* Select Grouping */
optgroup {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
}

option {
    padding: 4px 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
        padding-top: 10px;
    }

    .modal-content {
        max-height: calc(100vh - 20px);
    }

    .modal-body {
        max-height: calc(100vh - 150px);
        padding: 16px;
    }

    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row {
        margin: 0 -4px;
    }

    .col-md-4,
    .col-md-6,
    .col-md-12 {
        padding: 0 4px;
    }
}

/* ===== SCROLLBAR GİZLEME - Modal için ===== */

/* WebKit tabanlı tarayıcılar (Chrome, Safari, Edge) için */
.modal-dialog::-webkit-scrollbar,
.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
    display: none;
}

.modal-dialog::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track {
    background: transparent;
    display: none;
}

.modal-dialog::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
    background: transparent;
    display: none;
}

/* Firefox için scrollbar gizleme */
.modal-dialog,
.modal-content,
.modal-body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Internet Explorer ve eski Edge için */
.modal-dialog,
.modal-content,
.modal-body {
    -ms-overflow-style: none;
}

/* Genel modal scrollbar gizleme - tüm alt elementler için */
.modal *::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
    display: none !important;
}

.modal * {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* ============= YENİ SİPARİŞ MODAL STİLLERİ (Mobil Uygulama NewOrderModal mantığı) ============= */

.modal.fade#newOrderModal {
    display: flex !important;
    align-items: flex-start;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal.fade#newOrderModal .modal-dialog {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    animation: modalSlideDown 0.3s ease-out;
}

@keyframes modalSlideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal.fade#newOrderModal .modal-content {
    max-height: calc(100vh - 40px);
    overflow: hidden;
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Modal Header - Yeşil gradient (mobil uygulama mantığı) */
.modal.fade#newOrderModal .modal-header {
    background: linear-gradient(135deg, #2C5F4A 0%, #1E4233 100%);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px 12px 0 0;
}

.modal.fade#newOrderModal .modal-header .modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.modal.fade#newOrderModal .modal-header .modal-title i {
    font-size: 24px;
    margin-right: 12px;
}

.modal.fade#newOrderModal .modal-header .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: auto;
    height: auto;
    opacity: 1;
}

.modal.fade#newOrderModal .modal-header .btn-close:hover {
    color: #f8f9fa;
    opacity: 0.8;
}

/* Modal Body */
.modal.fade#newOrderModal .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding: 24px;
    background: white;
}

/* Form Groups */
.modal.fade#newOrderModal .form-group {
    margin-bottom: 24px;
}

.modal.fade#newOrderModal .form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
    display: block;
}

.modal.fade#newOrderModal .form-group label span {
    color: red;
    font-weight: 600;
}

/* Input ve Textarea Stilleri */
.modal.fade#newOrderModal .form-control {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.modal.fade#newOrderModal .form-control:focus {
    border-color: #2C5F4A;
    box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.1);
    outline: none;
}

.modal.fade#newOrderModal textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Araç Seçimi Dropdown (Yeşil gradient - mobil uygulama mantığı) */
.modal.fade#newOrderModal select#vehiclePersonnel {
    background: linear-gradient(135deg, #2C5F4A 0%, #1E4233 100%) !important;
    color: white !important;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(44, 95, 74, 0.3);
    cursor: pointer;
}

.modal.fade#newOrderModal select#vehiclePersonnel:focus {
    border-color: #2C5F4A;
    box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.2);
    outline: none;
}

.modal.fade#newOrderModal select#vehiclePersonnel option {
    background: #2C5F4A;
    color: white;
    padding: 8px;
    margin: 2px 0;
    border-radius: 8px;
    font-weight: 500;
}

/* Sipariş Türü Dropdown */
.modal.fade#newOrderModal select#serviceType {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    background: white;
    cursor: pointer;
}

.modal.fade#newOrderModal select#serviceType:focus {
    border-color: #2C5F4A;
    box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.1);
    outline: none;
}

/* Tarih Input'ları */
.modal.fade#newOrderModal input[type="date"] {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    cursor: pointer;
}

.modal.fade#newOrderModal input[type="date"]:focus {
    border-color: #2C5F4A;
    box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.1);
    outline: none;
}

/* Row ve Column Stilleri */
.modal.fade#newOrderModal .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.modal.fade#newOrderModal .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 8px;
    padding-right: 8px;
}

@media (max-width: 768px) {
    .modal.fade#newOrderModal .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Modal Footer */
.modal.fade#newOrderModal .modal-footer {
    background-color: #f8f9fa;
    border: none;
    border-top: 2px solid #ddd;
    padding: 20px;
    display: flex;
    gap: 16px;
    border-radius: 0 0 12px 12px;
}

.modal.fade#newOrderModal .modal-footer .btn {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal.fade#newOrderModal .modal-footer .btn-secondary {
    flex: 1;
    border: 2px solid #6c757d;
    background: transparent;
    color: #000;
}

.modal.fade#newOrderModal .modal-footer .btn-secondary:hover {
    background: #6c757d;
    color: white;
}

.modal.fade#newOrderModal .modal-footer .btn-primary {
    flex: 2;
    background: #2C5F4A;
    color: white;
    font-weight: 600;
}

.modal.fade#newOrderModal .modal-footer .btn-primary:hover {
    background: #1E4233;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 95, 74, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal.fade#newOrderModal {
        padding-top: 10px;
    }

    .modal.fade#newOrderModal .modal-dialog {
        max-width: calc(100% - 20px);
    }

    .modal.fade#newOrderModal .modal-body {
        padding: 16px;
    }

    .modal.fade#newOrderModal .modal-header {
        padding: 16px;
    }

    .modal.fade#newOrderModal .modal-footer {
        padding: 16px;
        flex-direction: column;
    }

    .modal.fade#newOrderModal .modal-footer .btn {
        flex: none;
        width: 100%;
    }
}

/* Loading state for vehicle select */
.modal.fade#newOrderModal select#vehiclePersonnel[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal.fade#newOrderModal select#vehiclePersonnel[disabled]::after {
    content: "Yükleniyor...";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
}

/* ===== SERVICE TABS - 4 Tab Yan Yana ===== */
.service-tabs-container {
    margin: 20px 0;
    padding: 0 10px;
    width: 100%;
    min-width: 1600px;
}

.service-tabs {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.service-tab {
    flex: 1;
    min-height: 80px;
    max-height: 80px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
}

.service-tab i {
    font-size: 1.5rem;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.service-tab.active i {
    color: white;
}

.service-tab span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: var(--text-primary);
}

.service-tab.active span {
    color: white;
}

.service-tab .tab-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
}

.service-tab.active .tab-count {
    background: #ff6666;
}

/* Service Tab Content */
.service-tab-content {
    min-height: 400px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .service-tab {
        width: 100%;
        min-height: 70px;
        max-height: 70px;
        padding: 10px;
    }

    .service-tab i {
        font-size: 1.3rem;
    }

    .service-tab span {
        font-size: 0.8rem;
    }

    .service-tabs-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .service-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .service-tab {
        min-height: 60px;
        max-height: 60px;
        padding: 8px;
    }

    .service-tab i {
        font-size: 1.2rem;
    }

    .service-tab span {
        font-size: 0.75rem;
    }
}

/* ===== ÜRÜN BİLGİLERİ STYLING ===== */
.product-details {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    border: 2px solid #e8f4f8;
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.08);
    transition: all 0.3s ease;
}

.product-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 76, 117, 0.12);
    border-color: #1976d2;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f4f8;
}

.product-header i {
    color: #1976d2;
    font-size: 1.4rem;
    background: #e3f2fd;
    padding: 8px;
    border-radius: 8px;
}

.product-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e8f4f8;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1976d2 0%, #03a9f4 100%);
}

.product-item:hover {
    background: #f8fafc;
    border-color: #1976d2;
    transform: translateX(4px);
}

.product-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-quantity {
    background: linear-gradient(135deg, #1976d2 0%, #03a9f4 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.3);
}

.product-details-row {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-price {
    color: #2e7d32;
    font-weight: 600;
    background: #e8f5e8;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.product-total {
    color: #1565c0;
    font-weight: 700;
    background: #e3f2fd;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.product-type {
    color: #6a1b9a;
    font-size: 0.85rem;
    background: #f3e5f5;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.product-square {
    color: #d84315;
    font-size: 0.85rem;
    background: #fbe9e7;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 8px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #1976d2;
}

.product-dimensions {
    color: #795548;
    font-size: 0.85rem;
    background: #efebe9;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.product-category {
    color: #388e3c;
    font-size: 0.85rem;
    background: #e8f5e8;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-details {
        padding: 16px;
        margin: 12px 0;
    }

    .product-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-details-row {
        flex-direction: column;
        gap: 8px;
    }

    .product-header span {
        font-size: 1rem;
    }
}

/* ===== FİYAT ÖZETİ STYLING ===== */
.price-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.price-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #1976d2 0%, #03a9f4 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.3);
}

.price-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: #ffebee;
    color: #c62828;
    border-radius: 6px;
    font-size: 0.9rem;
    border-left: 3px solid #e53935;
}

.price-original {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: #f5f5f5;
    color: #757575;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-label,
.discount-label,
.original-label {
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.discount-value {
    font-weight: 600;
}

.original-value {
    font-weight: 500;
}

@media (max-width: 768px) {
    .price-main {
        font-size: 1rem;
    }

    .price-discount,
    .price-original {
        font-size: 0.85rem;
    }
}

/* ===== CART MODAL STYLES ===== */
.cart-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.product-selection {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.product-selection h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(15, 76, 117, 0.1);
}

.form-control[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.cart-items {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    min-height: 200px;
}

.cart-items h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.cart-list {
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.item-info h5 {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.item-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.item-details span {
    background: #e3f2fd;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.total-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 16px;
    margin: 0;
}

.cart-total {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.total-amount {
    font-size: 18px;
    font-weight: 700;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

.loading-spinner {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.loading-spinner i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.error-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.error-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #dc3545;
}

.error-state h3 {
    margin-bottom: 10px;
    color: #dc3545;
}

/* Responsive Cart Styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .item-total {
        align-items: center;
        margin-top: 10px;
    }

    .cart-actions {
        flex-direction: column;
    }
}

/* ===== PRODUCTS PAGE WRAPPER ===== */
.products-page {
    width: 100%;
    min-height: calc(100vh - 70px);
    padding: 0;
    margin: 0;
}

/* ===== PRODUCTS PAGE STYLES ===== */
.products-page .products-grid,
.products-page .products-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: none;
    max-height: none !important;
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.products-page .products-content:before {
    display: none !important;
}

.products-page .product-card {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    height: auto !important;
    min-height: 60px !important;
    width: 100%;
    display: flex !important;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
    transform: none !important;
}

.products-page .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    border-color: #3b82f6 !important;
    transform: none !important;
    background: #f8fafc !important;
}

.product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-info-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 250px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-price-inline {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 100px;
}

.product-unit-inline {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--soap-foam);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--water-blue);
    min-width: 120px;
    text-align: center;
}

.product-actions-right {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 76, 117, 0.25);
}

.product-info {
    flex-grow: 1;
    margin-bottom: 16px;
}

.product-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--soap-foam);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid var(--water-blue);
}

.product-actions {
    display: flex !important;
    gap: 15px;
    margin-top: auto;
}

/* ===== PRODUCT CARD INLINE ACTIONS ===== */
.action-btn-mini {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    opacity: 1;
}

.action-btn-mini.edit-product-btn {
    background: #1e40af;
    color: white;
}

.action-btn-mini.edit-product-btn:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.action-btn-mini.delete-product-btn {
    background: #dc2626;
    color: white;
}

.action-btn-mini.delete-product-btn:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.action-btn {
    flex: none !important;
    min-width: 180px !important;
    max-width: none !important;
    width: auto !important;
    padding: 12px 24px !important;
    border: none;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.edit-product-btn {
    background: var(--primary-color) !important;
    color: white !important;
}

.edit-product-btn:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.02);
}

.delete-product-btn {
    background: #dc2626 !important;
    color: white !important;
}

.delete-product-btn:hover {
    background: #b91c1c !important;
    transform: scale(1.02);
}

/* Empty State */
.empty-products-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-products-state i,
.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-light);
    opacity: 0.5;
}

.empty-products-state h3,
.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.empty-products-state p,
.empty-state p {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* Order Card Actions */
.order-actions {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-start;
    align-items: center;
}

.order-actions .action-btn {
    flex: 0 0 auto !important;
    min-width: 180px !important;
    max-width: none !important;
    width: auto !important;
}

.order-card .order-actions button.action-btn {
    min-width: 180px !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    width: auto !important;
}

/* Pickup, washing, ready, delivery card specific */
.pickup-card .action-btn,
.washing-card .action-btn,
.ready-card .action-btn,
.delivery-card .action-btn {
    min-width: 180px !important;
    flex: 0 0 auto !important;
    width: auto !important;
}

/* Orders Actions Bar Buttons */
.orders-actions-bar .action-btn {
    min-width: 180px;
    padding: 14px 24px !important;
    font-size: 14px !important;
    white-space: nowrap;
}

/* Products Page Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 0;
    }

    .product-card {
        padding: 20px;
        min-height: 160px;
    }

    .product-name {
        font-size: 16px;
    }

    .price-amount {
        font-size: 20px;
    }

    .action-btn {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }

    .action-btn {
        width: 100%;
    }
}

/* ===== CUSTOM SCROLLBAR STYLES - EDIT MODAL ===== */
.cart-list::-webkit-scrollbar {
    width: 8px;
}

.cart-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cart-list::-webkit-scrollbar-thumb {
    background: #6f42c1;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
}

.cart-list::-webkit-scrollbar-thumb:hover {
    background: #5a359a;
}

/* Firefox için scroll bar */
.cart-list {
    scrollbar-width: thin;
    scrollbar-color: #6f42c1 #f1f1f1;
}

/* Action Button Danger Variant */
.action-btn.danger {
    background: #ef4444 !important;
    color: white !important;
    border: 2px solid #dc2626 !important;
    font-weight: 600 !important;
}

.action-btn.danger:hover {
    background: #dc2626 !important;
    border-color: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.action-btn.danger:active {
    background: #b91c1c !important;
    border-color: #991b1b !important;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.6);
}

/* Other Action Button Variants */
.action-btn.primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #2563eb;
}

.action-btn.primary:hover {
    background: #2563eb;
    border-color: #1d4ed8;
    transform: translateY(-1px);
}

.action-btn.success {
    background: #10b981;
    color: white;
    border: 2px solid #059669;
}

.action-btn.success:hover {
    background: #059669;
    border-color: #047857;
    transform: translateY(-1px);
}

.action-btn.warning {
    background: #f59e0b;
    color: white;
    border: 2px solid #d97706;
}

.action-btn.warning:hover {
    background: #d97706;
    border-color: #b45309;
    transform: translateY(-1px);
}

.action-btn.info {
    background: #06b6d4;
    color: white;
    border: 2px solid #0891b2;
}

.action-btn.info:hover {
    background: #0891b2;
    border-color: #0e7490;
    transform: translateY(-1px);
}

/* ====================== ORDER SEARCH BOX STYLING ====================== */
.orders-actions-bar .search-box {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    min-width: 300px !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.orders-actions-bar .search-box:focus-within {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.orders-actions-bar .search-box i {
    color: #9ca3af !important;
    margin-right: 12px !important;
    font-size: 14px !important;
    transition: color 0.2s ease !important;
    position: static !important;
}

.orders-actions-bar .search-box:focus-within i {
    color: #3b82f6 !important;
}

.orders-actions-bar .search-input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #374151 !important;
    flex: 1 !important;
    padding: 12px 0 !important;
    font-weight: 500 !important;
}

.orders-actions-bar .search-input::placeholder {
    color: #9ca3af !important;
    font-weight: 400 !important;
}

.orders-actions-bar .search-input:focus {
    color: #111827 !important;
}

/* Actions Bar Layout */
.orders-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.actions-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.actions-right {
    display: flex;
    align-items: center;
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-box {
        min-width: 250px;
        padding: 0 12px;
    }

    .search-input {
        padding: 10px 0;
        font-size: 13px;
    }

    .orders-actions-bar {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .actions-left,
    .actions-right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-box {
        min-width: 200px;
    }

    .search-input::placeholder {
        font-size: 12px;
    }
}

/* ====================== ORDER CARD ADDRESS STYLING ====================== */
.customer-section .address-section {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.customer-section .address-section i {
    color: #3b82f6;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.customer-section .address-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    max-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.customer-section .address-section:hover .address-text {
    max-height: none;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    background: white;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.customer-section .address-section:hover {
    background: #e3f2fd;
    border-left-color: #1976d2;
}

.customer-section .address-section:hover i {
    color: #1976d2;
}

/* Order card customer section spacing */
.customer-section h4 {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #111827;
}

.customer-section p {
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
}

.customer-section i {
    width: 16px;
    text-align: center;
    color: #6b7280;
}

/* ===== LOGIN ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== INPUT HINT STYLING ===== */
.input-hint {
    color: #64748b;
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
}

/* ===== RESPONSIVE DESIGN - LOGIN SCREEN ===== */
@media (max-width: 1100px) {
    .login-right-panel {
        padding: 40px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .right-panel-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 868px) {
    .login-split {
        flex-direction: column;
        overflow-y: auto;
    }

    .login-left-panel {
        width: 100%;
        height: auto;
        padding: 40px 24px;
    }

    .login-right-panel {
        width: 100%;
        height: auto;
        padding: 40px 24px;
    }

    .right-panel-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .right-panel-desc {
        text-align: center;
        margin-bottom: 32px;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 540px) {
    .login-left-panel {
        padding: 32px 20px;
    }

    .login-logo {
        height: 56px;
    }

    .login-form-header h2 {
        font-size: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .right-panel-title {
        font-size: 1.4rem;
    }
}

/* 🔒 SIDEBAR DISABLED STATE - Abonelik Kontrolü */
.sidebar-disabled {
    position: relative;
    pointer-events: none !important;
}

.sidebar-disabled .nav-item a,
.sidebar-disabled .nav-subitem a {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(80%);
    transition: all 0.3s ease;
}

.sidebar-disabled .nav-badge,
.sidebar-disabled .nav-subbadge {
    opacity: 0.3;
}

/* Disabled Overlay */
.sidebar-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.98) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeInOverlay 0.4s ease-out;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.sidebar-lock-message {
    text-align: center;
    padding: 30px;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-lock-message i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Nav disabled state hover effect */
.nav-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ===== CREATE CUSTOMER MODAL STYLES ===== */
#createCustomerModal .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333333 !important;
    font-size: 0.95rem;
}

#createCustomerModal .modal-body {
    background: #ffffff;
}

#createCustomerModal .address-section h6 {
    color: #2C5F4A;
    font-weight: 600;
}

#createCustomerModal .form-control {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #333333;
    background-color: #ffffff;
}

#createCustomerModal .form-control:focus {
    border-color: #2C5F4A;
    box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.1);
}

#createCustomerModal .form-control::placeholder {
    color: #9ca3af;
}