/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

/* App Container */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Header */
.top-header {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn {
    background: white;
    color: #2563eb;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.header-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.header-btn i {
    font-size: 0.875rem;
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 2rem 0;
    position: sticky;
    top: 73px;
    height: calc(100vh - 73px);
    overflow-y: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.875rem;
}

.nav-item:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.nav-item.active {
    background: #dbeafe;
    color: #2563eb;
    font-weight: 600;
}

.nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Dashboard Content */
.dashboard-content {
    flex: 1;
    padding: 2rem;
    background: #f8fafc;
}

.dashboard-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.dashboard-subtitle {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.metric-icon.sales {
    background: #10b981;
}

.metric-icon.invoices {
    background: #3b82f6;
}

.metric-icon.stock {
    background: #f59e0b;
}

.metric-icon.pending {
    background: #ef4444;
}

.metric-content {
    flex: 1;
}

.metric-title {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
}

.metric-loading-text::after {
    content: attr(data-loading-text);
    display: none;
}

.metric-loading-text.loading {
    position: relative;
    color: transparent;
}

.metric-loading-text.loading::after {
    display: inline-block;
    color: #6b7280;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.15), rgba(99, 102, 241, 0.2));
    border-radius: 12px;
    padding: 0.2rem 0.6rem;
    animation: metricShimmer 0.8s ease-in-out infinite alternate;
}

@keyframes metricShimmer {
    from { opacity: 0.55; transform: translateY(0); }
    to { opacity: 1; transform: translateY(-1px); }
}

/* Dashboard Sections */
.dashboard-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Full width section */
.dashboard-section.full-width {
    grid-column: 1 / -1;
}

.dashboard-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.section-content {
    padding: 1.5rem;
}

/* Recent Invoices */
.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.invoice-item:last-child {
    border-bottom: none;
}

.invoice-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.invoice-number {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.invoice-number:hover {
    text-decoration: underline;
}

.invoice-amount {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.875rem;
}

.invoice-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-paid {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Stock Alerts */
.alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

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

.alert-icon {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.alert-content p {
    margin: 0;
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 500;
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

.no-data i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.no-data p {
    margin: 0;
    font-size: 0.875rem;
}

/* Templates Section */
.templates-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.templates-overlay {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.templates-container {
    padding: 2rem;
}

.templates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.templates-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.close-templates {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-templates:hover {
    background: #f1f5f9;
    color: #1e293b;
    }
    
    .templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .template-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
        padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.template-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.template-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.template-card h3 {
        font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.template-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Mobile Warning Modal */
 .mobile-warning-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0);
     backdrop-filter: blur(0px);
     -webkit-backdrop-filter: blur(0px);
     z-index: 9999;
     display: none;
     justify-content: center;
     align-items: center;
     padding: 1rem;
     opacity: 0;
     transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
 }
 
 .mobile-warning-modal.active {
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     opacity: 1;
 }

 .mobile-warning-content {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(59, 130, 246, 0.2);
     border-radius: 20px;
     padding: 2rem;
     max-width: 400px;
     width: 100%;
     text-align: center;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     transform: scale(0.8) translateY(30px) rotate(-2deg);
     opacity: 0;
     transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .mobile-warning-modal.active .mobile-warning-content {
     transform: scale(1) translateY(0) rotate(0deg);
     opacity: 1;
 }

 .warning-icon {
     font-size: 3rem;
     margin-bottom: 1rem;
     animation: bounce 2s infinite;
     transform: scale(0.5);
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
 }
 
 .mobile-warning-modal.active .warning-icon {
     transform: scale(1);
     opacity: 1;
 }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

 .warning-title {
     color: #1e40af;
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     transform: translateY(20px);
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
 }
 
 .mobile-warning-modal.active .warning-title {
     transform: translateY(0);
     opacity: 1;
 }

 .warning-message {
     color: #475569;
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 1.5rem;
     transform: translateY(20px);
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
 }
 
 .mobile-warning-modal.active .warning-message {
     transform: translateY(0);
     opacity: 1;
 }

 .warning-tips {
     margin-bottom: 2rem;
     transform: translateY(20px);
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
 }
 
 .mobile-warning-modal.active .warning-tips {
     transform: translateY(0);
     opacity: 1;
 }

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    text-align: left;
}

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

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip-item span:last-child {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

 .warning-ok-btn {
     background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
     border: none;
     padding: 1rem 2rem;
     border-radius: 12px;
     font-size: 1rem;
    font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
     transform: translateY(20px) scale(0.9);
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
 }
 
 .mobile-warning-modal.active .warning-ok-btn {
     transform: translateY(0) scale(1);
     opacity: 1;
 }

 .warning-ok-btn:hover {
     transform: translateY(-2px) scale(1.05);
     box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
     animation: pulse 2s infinite;
 }
 
 @keyframes pulse {
     0%, 100% { transform: translateY(-2px) scale(1.05); }
     50% { transform: translateY(-2px) scale(1.08); }
 }

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

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        padding: 1rem 0;
    }
    
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .nav-item {
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .top-header {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .header-btn {
        padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .dashboard-content {
    padding: 0.75rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .section-content {
        padding: 1rem;
    }
    
    .templates-container {
        padding: 1rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-warning-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .warning-title {
        font-size: 1.3rem;
    }
    
    .warning-message {
        font-size: 0.9rem;
    }
    
    .tip-item {
        padding: 0.5rem;
    }
    
    .warning-ok-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #e94560 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #00bfff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Inventory Section */
.inventory-section {
    margin-top: 2rem;
}

.inventory-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
}

.inventory-table thead {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.inventory-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inventory-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.inventory-table tbody tr:hover {
    background: #f8fafc;
}

.inventory-table td {
    padding: 1rem;
    font-size: 0.9rem;
    color: #475569;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
        justify-content: center;
}

.btn-icon:hover {
    transform: translateY(-2px);
}

.btn-edit {
    color: #2563eb;
}

.btn-edit:hover {
    background: #eff6ff;
}

.btn-delete {
    color: #ef4444;
}

.btn-delete:hover {
    background: #fef2f2;
}

.no-products {
    display: flex;
        flex-direction: column;
    align-items: center;
        justify-content: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-products p {
    font-size: 1.1rem;
}

/* Product Modal */
.product-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
     justify-content: center;
     align-items: center;
    z-index: 9999;
}

.product-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
     opacity: 0;
        transform: translateY(-20px);
 }
    to {
     opacity: 1;
        transform: translateY(0);
    }
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.product-modal-header h2 {
     font-size: 1.5rem;
     font-weight: 700;
    color: #1e293b;
}

.close-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.product-modal-body {
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.custom-date-range {
    display: none;
    gap: 0.5rem;
}

.custom-date-range.is-visible {
    display: inline-flex;
    align-items: center;
}

.custom-date-range input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    border-radius: 12px !important;
    padding: 0.5rem 0.95rem !important;
    font-size: 0.95rem !important;
    background: #ffffff !important;
    color: #1f2937 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-date-range input[type="date"]:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.custom-date-range input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.range-separator {
    font-size: 0.85rem;
    color: #6b7280;
}

.apply-custom-date {
    padding: 0.45rem 1rem;
    border-radius: 10px;
    border: 1px solid #6366f1;
    background: #ffffff;
    color: #4338ca;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.apply-custom-date:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

.apply-custom-date:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #9ca3af;
    box-shadow: none;
}