/* BBSHQ Management System - Main Styles */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    --sidebar-width: 250px;
    --header-height: 60px;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Loading Indicator */
.htmx-indicator {
    display: none;
    z-index: 9999;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    background: #111 !important;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 2px 0 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* Sidebar Header */
.sidebar-header {
    padding: 1.5rem 1rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    background: #111;
}

.sidebar-header .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.sidebar-header .brand img {
    border-radius: 4px;
}

.brand-text {
    letter-spacing: 0.5px;
}

/* Sidebar Navigation */
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sidebar-nav .nav-item {
    margin: 0.25rem 0.5rem;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.sidebar-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.sidebar-nav .nav-link.active {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
}

.sidebar-nav .nav-link i {
    width: 20px;
    font-size: 1rem;
    text-align: center;
}

/* Support for both sidebar navigation structures */
.sidebar-nav .nav-link span {
    margin-left: 0.5rem;
}

.sidebar-nav .nav-link i:not(.me-2) + span {
    margin-left: 0.75rem;
}

/* Ensure proper spacing regardless of structure */
.sidebar-nav .nav-link > i:first-child {
    margin-right: 0.5rem;
}

.sidebar-nav .nav-link > i.me-2 {
    margin-right: 0.5rem;
}

.sidebar-section {
    color: #aaa;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1.2rem 1.5rem 0.5rem 1.5rem;
    text-transform: uppercase;
    background: none;
    border: none;
}

.sidebar-brand {
    padding: 1.5rem 1rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    background: #111;
}

.sidebar-brand h4 {
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-nav-item {
    margin: 1.25rem 0.5rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sidebar-nav-item:hover, .sidebar-nav-item.active {
    background-color: #222;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.5rem !important;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-nav-link i {
    width: 24px;
    margin-right: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.sidebar-nav-text {
    transition: var(--transition);
}

.sidebar-collapsed .sidebar-nav-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar-footer {
    background: #111;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar-footer .avatar {
    background: #222;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-footer .fw-semibold {
    color: #fff;
}

.sidebar-footer .text-light {
    color: #aaa !important;
}

.sidebar-footer .dropdown-menu {
    background: #222;
    color: #fff;
}

.sidebar-footer .dropdown-item {
    color: #fff;
}

.sidebar-footer .dropdown-item:hover {
    background: #333;
    color: #fff;
}

.sidebar-overlay {
    background: rgba(0,0,0,0.5);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.sidebar-collapsed + .main-content {
    margin-left: 70px;
}

/* Fix for pages with d-flex layout */
.d-flex > .flex-grow-1 {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Ensure sidebar is fixed for all pages */
.d-flex .sidebar {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: var(--sidebar-width) !important;
    height: 100vh !important;
}

/* Main content area for all pages */
.flex-grow-1 main {
    width: 100%;
}

/* Consistent spacing for all pages */
.main-content .container-fluid {
    padding: 1.5rem;
}

/* Header */
.main-header {
    background: white;
    min-height: var(--header-height);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.header-search {
    max-width: 400px;
    flex: 1;
    margin: 0 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.metric-card {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.metric-card .card-body {
    padding: 1.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    opacity: 0.9;
    font-size: 0.9rem;
}

.metric-change {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Tables */
.table-responsive {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Forms */
.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

/* Override Bootstrap primary button styles */
.btn.btn-primary,
button.btn-primary,
input.btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
button.btn-primary:hover,
button.btn-primary:focus,
button.btn-primary:active,
input.btn-primary:hover,
input.btn-primary:focus,
input.btn-primary:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    background-image: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.btn-primary {
    background-color: #000000 !important;
    border: 1px solid #000000 !important;
    background-image: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* Status Badges */
.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-weight: 500;
}

.status-draft { background-color: #e9ecef; color: #495057; }
.status-sent { background-color: #cce5ff; color: #0066cc; }
.status-viewed { background-color: #fff3cd; color: #856404; }
.status-accepted { background-color: #d4edda; color: #155724; }
.status-declined { background-color: #f8d7da; color: #721c24; }
.status-expired { background-color: #f5c6cb; color: #721c24; }

/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Modals */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

/* Modern Utilities */
.sidebar-brand .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Sidebar layout fixes */
.sidebar .nav-link {
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0.125rem 0;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    transform: translateX(2px);
}

/* Content area improvements */
.main-content {
    min-height: 100vh;
    background: #f8f9fa;
}

.main-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: none;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .header-search {
        display: none;
    }
}

/* Utilities */
.text-muted { color: #6c757d !important; }
.text-primary { color: var(--primary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-warning { color: var(--warning-color) !important; }

.bg-gradient-primary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%) !important;
}

.shadow-sm { box-shadow: var(--box-shadow) !important; }

.border-radius { border-radius: var(--border-radius) !important; }

/* Animation classes for HTMX transitions */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Chart containers */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Search and filter components */
.search-filters {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
}

.filter-chip {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    margin: 0.25rem;
}

.filter-chip.active {
    background-color: var(--primary-color);
    color: white;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-card {
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Product attributes styling */
.product-card .card-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-card .card-text.attributes {
    max-height: 2.4rem;
    overflow: hidden;
    line-height: 1.2;
    font-size: 0.85rem;
}

/* Attributes alert styling */
.alert-info .attributes-display {
    max-height: 200px;
    overflow-y: auto;
}

.alert-info .attributes-display > div {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.alert-info .attributes-display > div:last-child {
    border-bottom: none;
}

.product-image {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Placeholder image fallback */
.product-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
    height: 200px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-image-placeholder i {
    opacity: 0.6;
}

/* Quote builder */
.quote-builder {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quote-step {
    padding: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.quote-step:last-child {
    border-bottom: none;
}

.quote-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

/* Progress indicators */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}


.progress-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-step.active .progress-step-circle {
    background-color: var(--primary-color);
}

.progress-step.completed .progress-step-circle {
    background-color: var(--success-color);
}


/* Dashboard Stat Cards - High Contrast Design */
.stat-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 120px;
    background: #ffffff;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.stat-card .card-body {
    padding: 1rem !important;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.stat-icon-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.stat-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stat-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon-purple {
    background: linear-gradient(135deg, #000000, #333333);
}

.stat-icon-blue i,
.stat-icon-green i,
.stat-icon-orange i,
.stat-icon-purple i {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
    color: #111827 !important;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
    color: #374151 !important;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.stat-sub {
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
    color: #6b7280 !important;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Text container to control overflow */
.stat-text-container {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive adjustments for stat cards */
@media (max-width: 768px) {
    .stat-card {
        min-height: 100px;
    }
    
    .stat-card .card-body {
        padding: 0.875rem !important;
    }
    
    .stat-icon-container {
        width: 44px;
        height: 44px;
        margin-right: 0.875rem;
    }
    
    .stat-icon-blue i,
    .stat-icon-green i,
    .stat-icon-orange i,
    .stat-icon-purple i {
        font-size: 1.4rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
        font-weight: 900;
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 700;
    }
    
    .stat-sub {
        font-size: 0.75rem;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .stat-card {
        min-height: 95px;
    }
    
    .stat-card .card-body {
        padding: 0.75rem !important;
    }
    
    .stat-icon-container {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .stat-icon-blue i,
    .stat-icon-green i,
    .stat-icon-orange i,
    .stat-icon-purple i {
        font-size: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-sub {
        font-size: 0.7rem;
    }
}

/* Dashboard Card Improvements */
.card-header h5, .card-header h6 {
    color: #333;
}

/* Improved spacing for dashboard */
#main-content .row.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* Products grid - force 3 columns on desktop */
#products-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

/* Force all product cards to be exactly 3 columns on desktop */
#products-grid .col-xl-3,
#products-grid .col-lg-4,
#products-grid .col-md-6,
#products-grid .col-sm-12,
#products-grid [class*="col-"] {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

/* Responsive: 2 columns on tablets */
@media (max-width: 992px) {
    #products-grid .col-xl-3,
    #products-grid .col-lg-4,
    #products-grid .col-md-6,
    #products-grid .col-sm-12,
    #products-grid [class*="col-"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 576px) {
    #products-grid .col-xl-3,
    #products-grid .col-lg-4,
    #products-grid .col-md-6,
    #products-grid .col-sm-12,
    #products-grid [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

#products-grid[style*="display: none"] {
    display: none !important;
}

/* Empty state styling */
.text-center i[style*='font-size: 3rem'] {
    opacity: 0.5;
}

/* Progress bar improvements */
.progress {
    background-color: rgba(0,0,0,0.1);
    border-radius: 6px;
}

/* Dashboard Main Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    color: #222;
}

.card-header {
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    font-size: 1rem;
}

.card .btn-outline-primary {
    border-radius: 20px;
    font-size: 0.9rem;
    padding: 0.25rem 1rem;
}

.table th, .table td {
    vertical-align: middle;
}

.progress {
    background: #e5e7eb;
    border-radius: 8px;
}

.progress-bar.bg-primary {
    background: #2563eb !important;
}

/* Dashboard icon colors */
.card[style*='#2563eb'] i { color: #fff; }
.card[style*='#22c55e'] i { color: #fff; }
.card[style*='#f59e42'] i { color: #fff; }
.card[style*='#000000'] i { color: #fff; }

/* Remove extra margin from last row */
.row.mb-4:last-child { margin-bottom: 0 !important; }

/* Dashboard content area max width and centering */
#main-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Dashboard Stat Cards - compact and balanced */
.dashboard-stat-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.dashboard-stat-card {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 260px;
    height: 160px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1.25rem 1.25rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.dashboard-stat-card .stat-icon {
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
}

.dashboard-stat-card .stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.dashboard-stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.dashboard-stat-card .stat-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive fix for stat cards */
@media (max-width: 991px) {
    .dashboard-stat-row {
        flex-direction: column;
        gap: 1rem;
    }
    .dashboard-stat-card {
        max-width: 100%;
        height: 120px;
    }
}

/* Payment Option Buttons */
.payment-option-btn {
    min-height: 80px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #6c757d !important;
    position: relative;
    overflow: hidden;
}

.payment-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-color: #495057 !important;
}

.payment-option-btn.btn-dark {
    background-color: #212529 !important;
    border-color: #212529 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.3) !important;
}

.payment-option-btn.btn-dark:hover {
    background-color: #343a40 !important;
    border-color: #343a40 !important;
    transform: translateY(-2px);
}

.payment-option-btn.btn-outline-secondary {
    background-color: white !important;
    color: #6c757d !important;
}

.payment-option-btn.btn-outline-secondary:hover {
    background-color: #f8f9fa !important;
    color: #495057 !important;
}

.payment-option-btn i {
    font-size: 1.25rem;
}

.payment-option-btn .fw-bold {
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Responsive payment buttons */
@media (max-width: 768px) {
    .payment-option-btn {
        min-height: 70px !important;
    }
    
    .payment-option-btn i {
        font-size: 1.1rem;
    }
    
    .payment-option-btn .fw-bold {
        font-size: 0.85rem;
    }
}

/* ===========================================
   Authentication & Authorization Enhancements
   =========================================== */

/* Sidebar User Info */
.sidebar-footer {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.user-info:hover {
    background: rgba(255,255,255,0.15);
}

.user-avatar {
    color: #fff;
    font-size: 1.5rem;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: capitalize;
}

/* Authentication Form Styles */
.auth-page {
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 1.5rem;
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

.auth-logo {
    text-align: center;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    background: #000000;
    width: 100%;
    border-radius: 12px 12px 0 0;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
}

.logo-image {
    max-width: 300px;
    height: auto;
}

.auth-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.25rem;
    width: 100%;
    display: block;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.label-icon {
    margin-right: 0.5rem;
}

.form-input, .form-select {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    box-sizing: border-box;
    display: block;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.password-input-container {
    position: relative;
    width: 100%;
    display: block;
}

.password-input {
    width: 100%;
    padding-right: 50px;
    box-sizing: border-box;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    opacity: 0.7;
}

/* Eye icon styles */
.eye-icon {
    width: 18px;
    height: 12px;
    position: relative;
    display: inline-block;
}

/* Eye open */
.eye-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 12px;
    border: 2px solid #666;
    border-radius: 9px;
    background: transparent;
}

.eye-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
}

/* Eye closed */
.eye-icon.closed::before {
    border-color: #666;
    background: transparent;
}

.eye-icon.closed::after {
    display: none;
}

.eye-icon.closed {
    position: relative;
}

.eye-icon.closed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 12px;
    border: 2px solid #666;
    border-radius: 9px;
    background: transparent;
}

/* Diagonal line through closed eye */
.eye-icon.closed:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 2px;
    background: #666;
    z-index: 2;
}

.btn.btn-login,
.btn-primary.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    background-image: none !important;
}

.btn.btn-login:hover,
.btn-primary.btn-login:hover,
.btn.btn-login:focus,
.btn-primary.btn-login:focus,
.btn.btn-login:active,
.btn-primary.btn-login:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert Styles */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-icon {
    font-size: 1.1rem;
}

/* Development Info */
.dev-info {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.dev-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #856404;
}

.dev-info p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #6c6c6c;
}

.quick-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Loading Spinner */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sales Dashboard Specific */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.dashboard-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: between;
    align-items: center;
}

.card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* ============================================
   Conversations & Chat Interface Styles
   ============================================ */

/* Conversations Header Styles */
.card-header.conversations-header {
    padding: 1.5rem !important;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    display: block !important; /* Override any flex from card-header */
    flex-direction: column !important; /* In case display:flex is forced */
    align-items: stretch !important;
    justify-content: flex-start !important;
}

/* Title Section */
.header-title-section {
    margin-bottom: 1.25rem;
}

.conversations-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
}

.conversations-title i {
    font-size: 1.125rem;
    color: #6c757d;
}

/* Controls Section */
.header-controls-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f3f5;
}

/* Button Styles */
.header-controls-section .btn {
    height: 2.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.header-controls-section .btn-light {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
}

.header-controls-section .btn-light:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.header-controls-section .btn-light.active,
#filterUnreadBtn.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

#filterUnreadBtn.active i {
    color: #ffffff;
}

/* Dropdown Styles */
.dropdown-menu {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    font-size: 0.875rem;
    transition: background-color 0.15s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    font-size: 0.875rem;
}

/* Search Section */
.header-search-section {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 2.5rem;
    padding-left: 2.75rem;
    padding-right: 2.75rem;
    font-size: 0.875rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.search-input:focus {
    background-color: #ffffff;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.search-input::placeholder {
    color: #6c757d;
}

.search-clear-btn {
    position: absolute;
    right: 0.5rem;
    padding: 0.25rem;
    color: #6c757d;
    text-decoration: none;
}

.search-clear-btn:hover {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 576px) {
    .conversations-header {
        padding: 1rem;
    }
    
    .header-title-section {
        margin-bottom: 1rem;
    }
    
    .conversations-title {
        font-size: 1.125rem;
    }
    
    .header-controls-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .header-controls-section .btn {
        height: 2.25rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .search-input {
        height: 2.25rem;
        font-size: 0.8125rem;
    }
}

/* Show search clear button when input has value */
.search-input:not(:placeholder-shown) + .search-clear-btn {
    display: block !important;
}

/* ============================================
   User Management Styles
   ============================================ */

/* Enhanced Search & Filter Section */
.search-filter-section {
    border: 1px solid #e9ecef;
    transition: box-shadow 0.15s ease;
}

.search-filter-section:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.search-filter-section .input-group-text {
    border-color: #dee2e6;
}

.search-filter-section .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.search-filter-section .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* Active Filters */
.active-filters .filter-tag {
    background-color: #e7f3ff;
    color: #0066cc;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.active-filters .filter-tag button {
    background: none;
    border: none;
    color: #0066cc;
    font-size: 0.875rem;
    padding: 0;
    margin-left: 0.25rem;
}

/* Enhanced Statistics Cards */
.stat-card .card {
    transition: all 0.2s ease;
    border-radius: 0.75rem;
}

.stat-card .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.stat-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Soft color backgrounds */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

/* Progress bars in cards */
.stat-card .progress {
    border-radius: 2px;
}

.stat-card .progress-bar {
    border-radius: 2px;
}

/* Badge styling */
.stat-card .badge {
    font-size: 0.7rem;
    font-weight: 500;  
}

/* Card number styling */
.stat-card h3 {
    font-size: 2rem;
    color: #212529;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .search-filter-section .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-filter-section .btn {
        width: 100%;
    }
    
    .stat-icon-wrapper {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .stat-card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .search-filter-section {
        padding: 1rem;
    }
    
    .stat-card .card-body {
        padding: 1.5rem;
    }
}

.card-subtitle {
    color: #666;
    font-size: 0.9rem;
}

.card-content {
    padding: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.action-text {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Role-based visibility */
[data-role]:not([data-role*="manager"]):not([data-role*="admin"]) {
    display: none;
}

[data-nav-role]:not([data-nav-role*="manager"]):not([data-nav-role*="admin"]) {
    display: none;
}

/* Loading states */
.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

/* Quote Builder Progress Steps */
.progress-steps {
    display: flex;
    justify-content: between;
    align-items: center;
    width: 100%;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.progress-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.progress-line {
    height: 2px;
    background-color: #dee2e6;
    flex: 1;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    top: -25px;
    z-index: 1;
}

.progress-step.active .progress-step-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.progress-step.active .progress-step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .progress-step-circle {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.progress-step.completed .progress-step-label {
    color: var(--success-color);
    font-weight: 600;
}

.progress-line.completed {
    background-color: var(--success-color);
}

/* Quote Builder Specific Styles */
.quote-step {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.auto-save-indicator {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-line {
        display: none;
    }
    
    .progress-step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .progress-step-label {
        margin-top: 0;
    }
}

/* Email Message Styles */
.email-message {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 0.75rem;
}

.email-subject {
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem !important;
}

.email-content {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Adjust for light theme messages */
.bg-light .email-message {
    border-left-color: rgba(0, 0, 0, 0.2);
}

.bg-light .email-subject {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Enhanced Customer Search Dropdown Styles */
.customer-dropdown-list {
    max-height: 400px;
    overflow-y: auto;
}

.customer-row {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.customer-row:hover,
.customer-row.selected {
    background-color: #f8f9fa;
}

.customer-row.selected {
    background-color: #e3f2fd;
    border-left: 4px solid var(--primary-color);
}

.customer-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    font-weight: bold;
}

.customer-info {
    flex: 1;
    min-width: 0; /* Prevents flex item from expanding beyond container */
}

.customer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.25rem;
}

.customer-menu {
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.customer-row:hover .customer-menu {
    opacity: 1;
}

/* Dropdown positioning and styling */
.dropdown-results {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: white;
    z-index: 1050;
}

/* Header styling */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

/* Search tips styling */
.dropdown-results .bg-light {
    background-color: #f8f9fa !important;
}

/* Contact information styling */
.customer-info .row .col-md-6 {
    padding: 0 0.25rem;
}

.customer-info .small {
    font-size: 0.875rem;
}

.customer-info .text-muted {
    color: #6c757d !important;
}

/* Badge styling */
.badge {
    font-size: 0.75rem;
    padding: 0.25em 0.5em;
}

/* Progress bar in loading indicator */
.progress {
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-row {
        padding: 0.75rem;
    }
    
    .avatar-circle {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .customer-info .row .col-md-6 {
        padding: 0.125rem 0;
    }
    
    .customer-name {
        font-size: 0.9rem;
    }
    
    .customer-info .small {
        font-size: 0.8rem;
    }
}

/* Additional styling for better visual hierarchy */
.customer-info .d-flex.gap-3 > div {
    white-space: nowrap;
}

.customer-info .text-end {
    min-width: 80px;
}

/* Ensure proper text truncation */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Enhanced search input styling */
.border-primary {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Accessibility improvements */
.customer-row:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* Animation for dropdown appearance */
.dropdown-results {
    animation: dropdownFadeIn 0.15s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORCE BLACK PRIMARY BUTTONS - HIGHEST PRIORITY */
body .btn-primary,
body button.btn-primary,
body input[type="submit"].btn-primary,
body .btn.btn-primary {
    background-color: #000000 !important;
    background-image: none !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

body .btn-primary:hover,
body .btn-primary:focus,
body .btn-primary:active,
body .btn-primary.active,
body button.btn-primary:hover,
body button.btn-primary:focus,
body button.btn-primary:active,
body input[type="submit"].btn-primary:hover,
body input[type="submit"].btn-primary:focus,
body .btn.btn-primary:hover,
body .btn.btn-primary:focus,
body .btn.btn-primary:active {
    background-color: #333333 !important;
    background-image: none !important;
    border-color: #333333 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}