﻿
/* ============================================
   DEFAULT LINK STYLES
   ============================================ */
a {
    text-decoration: none;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .user-admin .stat-card-blue,
    .user-admin .stat-card-mauve,
    .user-admin .stat-card-gray,
    .user-admin .stat-card-mint {
        margin-bottom: 15px;
    }
}


:root {
    /* Light mode colors */
    --color-range-0: #e6f0ff;
    --color-range-1: #b3d1ff;
    --color-range-2: #66a3ff;
    --color-range-3: #1b84ff;
    --color-range-4: #0f539e;
    --background-color: #ffffff;
    --text-color: #000000;
}

[data-theme="dark"] {
    /* Dark mode colors */
    --color-range-0: #153a70;
    --color-range-1: #1b59b8;
    --color-range-2: #1b84ff;
    --color-range-3: #4da3ff;
    --color-range-4: #80b8ff;
    --background-color: #121212;
    --text-color: #ffffff;
}



#chart-container {
    height: 300px;
}

#chart-selling {
    height: 433px;
}

.custom-package {
    background: url(../images/pharmacy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 390px;
}

.rtl .custom-package .box-body {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    text-align: end;
}

.due-week {
    height: 159px;
}

div.dataTables_wrapper div.dataTables_length label {
    margin-bottom: 10px !important;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 10px 10px !important;
}

@media only screen and (max-width: 1400px) {
    .custom-package {
        height: 445px !important;
    }

    #chart-selling {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    div.dataTables_wrapper div.dataTables_filter {
        text-align: left !important;
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: 0em !important;
    }

    div.dataTables_wrapper div.dataTables_length label {
        margin-bottom: 5px !important;
    }

    div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
        text-align: right;
    }
}



/*----------------------------------index-2------------------------------------*/
.review-box {
    height: 305px;
}

#sale-container {
    height: 315px;
}

.last-weekchart {
    height: 343.5px;
}
/* Dashboard-specific styles for RxWorld User Portal */

/* Welcome Section Styles */
.welcome-section-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.welcome-pharmacy-image {
    max-height: 150px;
    width: inherit !important;
    float: right;
}

/* Statistics Cards */
.stat-card-blue {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1565C0;
    border: 1px solid #90CAF9;
}

.stat-card-mauve {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #7B1FA2;
    border: 1px solid #CE93D8;
}

.stat-card-gray {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    color: #00695C;
    border: 1px solid #4DB6AC;
}

.stat-card-mint {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
}

.sub-stat-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sub-stat-label {
    font-size: 0.85rem;
    color: #666;
}

.sub-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.chart-container {
    min-height: 400px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-delivered {
    background-color: #d4edda;
    color: #155724;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.widget-card {
    border-radius: 8px;
    padding: 20px;
}

.widget-card-blue {
    background-color: #d0e8f2;
}

.widget-card-mint {
    background-color: #d0f2e0;
}

.widget-number {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}

.progress-bar-wrapper {
    height: 8px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 50%, #dc143c 100%);
    border-radius: 4px;
}
/* User Admin - Marketplace Styles */
/* ============================================
   DASHBOARD STYLES
   ============================================ */
/* Dashboard styles are included in color-theme.css */


/* ============================================
   MARKETPLACE STYLES
   ============================================ */

/* Marketplace Header */
.marketplace-header {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

    .marketplace-header h3 {
        color: #005499;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .marketplace-header p {
        color: #666;
        font-size: 13px;
        margin: 0;
    }

/* Modern Filter Section */
.filter-section {
    background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%);
    color: #fff;
    padding: 0;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 84, 153, 0.2);
}

.filter-section-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

    .filter-section-header h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .filter-section-header h4 i {
            font-size: 18px;
        }

/* View Controls Compact - Merged with Filter Header */
.view-controls-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .view-controls-compact .view-controls-left {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .view-controls-compact .view-controls-right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .view-controls-compact .btn-view {
        padding: 6px 12px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s ease;
        color: #fff;
    }

        .view-controls-compact .btn-view i {
            font-size: 18px;
        }

        .view-controls-compact .btn-view:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .view-controls-compact .btn-view.active {
            background: #fff;
            color: #005499;
            border-color: #fff;
        }

    .view-controls-compact select {
        border-radius: 4px !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 6px 12px !important;
        font-size: 13px !important;
        color: #333 !important;
        min-width: 200px !important;
        transition: all 0.3s ease !important;
    }

        .view-controls-compact select:focus {
            outline: none !important;
            border-color: #fff !important;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
        }

    .view-controls-compact .pagination-info {
        display: none;
    }

.filter-clear-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-clear-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
    }

.filter-items-container {
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-items {
    position: relative;
}

.filter-label {
    background: rgba(255, 255, 255, 0.95);
    color: #005499;
    font-weight: 600;
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    user-select: none;
}

    .filter-label:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .filter-label i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .filter-label.active i {
        transform: rotate(180deg);
    }

.rxw-subCategories {
    list-style: none;
    padding: 10px;
    margin: 10px 0 0 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-height: 350px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rxw-subCategories::-webkit-scrollbar {
    width: 6px;
}

.rxw-subCategories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.rxw-subCategories::-webkit-scrollbar-thumb {
    background: #005499;
    border-radius: 10px;
}

    .rxw-subCategories::-webkit-scrollbar-thumb:hover {
        background: #1a6bb3;
    }

.rxw-subCategories li {
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    width: 100%;
}

    .rxw-subCategories li:last-child {
        border-bottom: none;
    }

/* Bootstrap 5 form-check customization for marketplace filters */
.rxw-subCategories .form-check {
    margin-bottom: 0;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .rxw-subCategories .form-check:hover {
        background-color: #f8f9fa;
    }

    /* Checked state styling - using class added by JavaScript */
    .rxw-subCategories .form-check.checked {
        background-color: #e8f4f8;
    }

        .rxw-subCategories .form-check.checked:hover {
            background-color: #d0e8f0;
        }

.rxw-subCategories .form-check-input {
    /* Use primary color for checkbox accent */
    accent-color: #005499;
    cursor: pointer;
    margin-top: 0;
    margin-right: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    /* Override generic checkbox styles from style.css */
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
}

    /* Reset generic checkbox pseudo-elements for marketplace filters */
    .rxw-subCategories .form-check-input:before,
    .rxw-subCategories .form-check-input:after {
        display: none !important;
        content: none !important;
    }

.rxw-subCategories .form-check-label {
    cursor: pointer;
    user-select: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    margin-bottom: 0;
    flex: 1;
    /* Reset generic checkbox label styles */
    padding-left: 0 !important;
    position: static !important;
    display: block !important;
}

/* Reset generic checkbox label pseudo-elements */
.rxw-subCategories .form-check-input + .form-check-label:before,
.rxw-subCategories .form-check-input + .form-check-label:after {
    display: none !important;
    content: none !important;
}

.rxw-subCategories .form-check:hover .form-check-label {
    color: #005499;
}

/* Price filter special styling */
.price-filter-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .price-filter-input input {
        width: 100px !important;
        padding: 8px !important;
        border: 1px solid #ddd !important;
        border-radius: 4px !important;
        font-size: 13px !important;
        color: #333 !important;
    }

        .price-filter-input input:focus {
            border-color: #005499 !important;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1) !important;
        }

/* View Controls */
.view-controls {
    background: linear-gradient(to right, #005499 0%, #1a6bb3 100%);
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 84, 153, 0.2);
}

.view-controls-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-view {
    padding: 8px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #fff;
}

    .btn-view i {
        font-size: 20px;
    }

    .btn-view:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .btn-view.active {
        background: #fff;
        color: #005499;
        border-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

.view-controls select {
    border-radius: 6px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 8px 15px !important;
    font-size: 13px !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
}

    .view-controls select:focus {
        outline: none !important;
        border-color: #fff !important;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
    }

.pagination-info {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* List View Styles */
.product-list-item {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .product-list-item .row {
        align-items: center;
    }

    .product-list-item .col-md-1.text-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list-item:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.product-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    overflow: hidden;
    padding: 8px;
}

    .product-image-placeholder .product-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #005499;
    margin-bottom: 5px;
}

.product-ndc {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-meta {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

.status-label {
    background: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
}

.price-section {
    text-align: left;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    margin-bottom: 3px;
}

.discount-price {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
}

.discount-badge {
    background: linear-gradient(135deg, #005499 0%, #003d73 100%);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
    box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
    white-space: nowrap;
}

.full-price {
    color: #27ae60;
    font-size: 12px;
    font-weight: 600;
}

.qty-info {
    font-size: 13px;
    color: #333;
}

    .qty-info strong {
        font-weight: 700;
        color: #005499;
    }

.exp-date {
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
}

.btn-add {
    background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 84, 153, 0.3);
    display: inline-block;
    white-space: nowrap;
}

/* List View Add Button */
.product-list-item .btn-add {
    width: auto;
    display: inline-block;
    margin: 0;
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 84, 153, 0.4);
}

/* Grid View Styles */
.product-grid-item {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 12px;
    margin-bottom: 15px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .product-grid-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.product-grid-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 600;
    overflow: hidden;
    padding: 8px;
}

    .product-grid-image .product-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.grid-product-name {
    font-size: 13px;
    font-weight: 600;
    color: #005499;
    margin-bottom: 5px;
    min-height: auto;
    line-height: 1.3;
}

.grid-price-section {
    margin-top: auto;
}

    .grid-price-section .price-section {
        margin-bottom: 8px;
    }

        .grid-price-section .price-section .original-price {
            font-size: 11px;
            margin-bottom: 3px;
            text-decoration: line-through;
            color: #999;
        }

        .grid-price-section .price-section .discount-price {
            font-size: 14px;
            font-weight: 700;
            color: #FF6B6B;
            margin-bottom: 0;
        }

.grid-view-section .product-ndc {
    font-size: 11px;
    margin-bottom: 5px;
}

.grid-view-section .product-meta {
    font-size: 11px;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 20;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-badge {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgba(255, 152, 0, 0.4);
}

/* Exp Date with Icon */
.exp-date-with-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
}

    .exp-date-with-icon i {
        font-size: 14px;
        color: #005499;
    }

    .exp-date-with-icon .product-icons {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-left: auto;
    }

.nabp-logo {
    background: #d32f2f;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
}

.rx-symbol {
    background: #005499;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
}

/* Product Package */
.product-package {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.4;
}

.package-type {
    color: #d32f2f;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.package-sealed {
    color: #666;
    display: block;
}

/* Unit Price Label */
.unit-price-label {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Discount Percentage (Green) */
.discount-percentage {
    color: #27ae60;
    font-weight: 600;
    font-size: 12px;
    margin-left: 5px;
}

/* Quantity Section */
.qty-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.available-qty {
    font-size: 11px;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.qty-input-wrapper {
    width: 70px !important;
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
}

    .qty-input-wrapper input,
    .qty-input-wrapper .qty-input,
    .grid-price-section .qty-input-wrapper input,
    .grid-price-section .qty-input-wrapper .qty-input,
    .product-grid-item .qty-input-wrapper input,
    .product-grid-item .qty-input-wrapper .qty-input {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }

.qty-input {
    width: 100% !important;
    padding: 6px 8px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    text-align: center !important;
    background: #fff !important;
    color: #333 !important;
    font-weight: 500 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 32px !important;
    -webkit-appearance: textfield !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    box-sizing: border-box !important;
}

    .qty-input::-webkit-inner-spin-button,
    .qty-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .qty-input:focus {
        outline: none;
        border-color: #005499;
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1);
        background: #fff;
    }

    .qty-input:hover {
        border-color: #005499;
    }

/* Updated Add Button */
.grid-price-section .btn-add {
    padding: 8px 15px;
    font-size: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .grid-price-section .btn-add i {
        font-size: 14px;
    }

/* List View Quantity Input (Before Wishlist) */
.list-qty-input-wrapper {
    width: 70px;
    margin: 0 auto;
}

.list-qty-input {
    width: 100% !important;
    padding: 6px 8px !important;
    border: 2px solid #005499 !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    text-align: center !important;
    background: #fff !important;
    color: #333 !important;
    font-weight: 600 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 36px !important;
    min-height: 36px !important;
    -webkit-appearance: textfield !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

    .list-qty-input::-webkit-inner-spin-button,
    .list-qty-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .list-qty-input:focus {
        outline: none !important;
        border-color: #005499 !important;
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.2) !important;
        background: #fff !important;
    }

    .list-qty-input:hover {
        border-color: #003d73 !important;
    }

.product-grid-item .wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.wishlist-icon:hover {
    color: #FF6B6B;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* Pagination */
.pagination-info {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.pagination .page-link {
    border-radius: 6px;
    margin: 0 3px;
    border-color: #e0e0e0;
    color: #005499;
    transition: all 0.3s ease;
}

    .pagination .page-link:hover {
        background-color: #005499;
        border-color: #005499;
        color: #fff;
        transform: translateY(-2px);
    }

.pagination .page-item.active .page-link {
    background-color: #005499;
    border-color: #005499;
    box-shadow: 0 4px 10px rgba(0, 84, 153, 0.3);
    color: #fff;
}

/* Grid/List View Toggle */
.list-view-section {
    display: block;
}

.grid-view-section {
    display: none;
    /* max-height: calc(100vh - 400px);
	overflow-y: auto;
	overflow-x: hidden; */
}

    .grid-view-section.active {
        display: flex;
        flex-wrap: wrap;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .filter-items-container {
        flex-direction: column;
    }

    .filter-label {
        width: 100%;
        justify-content: space-between;
    }

    .rxw-subCategories {
        left: 0;
        right: 0;
        min-width: auto;
    }

    .view-controls {
        flex-direction: column;
        gap: 15px;
    }

    .view-controls-left,
    .view-controls-right {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   MY-POSTINGS STYLES
   ============================================ */
.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 0.25em;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        min-width: 1.5em;
        padding: 0.5em 1em;
        margin-left: 2px;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        color: #737373;
        border: 1px solid transparent;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            color: #ffffff !important;
            background-color: #005499 !important;
            border-color: #005499 !important;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current,
        .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
            color: #ffffff !important;
            background-color: #005499 !important;
            border-color: #005499 !important;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
            cursor: not-allowed;
            color: #737373;
            border: 1px solid transparent;
            background: 0 0;
            box-shadow: none;
            opacity: 0.5;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button:active {
            outline: 0;
            background-color: #003d73 !important;
        }

    .dataTables_wrapper .dataTables_paginate .ellipsis {
        padding: 0 1em;
        color: #737373;
    }

/* Simple Numbers Pagination */
.paging_simple_numbers .pagination .paginate_button {
    padding: 0;
    background: #ffffff;
}

    .paging_simple_numbers .pagination .paginate_button:hover {
        background: #ffffff;
    }

        .paging_simple_numbers .pagination .paginate_button:hover a {
            color: #ffffff;
            background-color: #005499 !important;
        }

    .paging_simple_numbers .pagination .paginate_button a {
        padding: 0.5em 1em;
        border-radius: 2px;
        border: 0 !important;
        color: #737373;
        transition: all 0.3s ease;
    }

    .paging_simple_numbers .pagination .paginate_button.active a {
        color: #ffffff !important;
        background-color: #005499 !important;
    }

/* DataTables Info */
.dataTables_wrapper .dataTables_info {
    padding-top: 0.85em;
    color: #333;
    font-size: 14px;
}

/* DataTables Length */
.dataTables_wrapper .dataTables_length {
    padding-top: 0.85em;
}

    .dataTables_wrapper .dataTables_length label {
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }

/* DataTables Filter */
.dataTables_wrapper .dataTables_filter {
    padding-top: 0.85em;
    text-align: right;
}

    .dataTables_wrapper .dataTables_filter label {
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }

/* Box Header Styling */
.box-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e0e0e0;
    padding: 15px 20px;
}

    .box-header h3 {
        color: #005499;
        font-weight: 700;
        font-size: 18px;
        margin: 0;
    }

    .box-header .box-tools {
        color: #666;
    }

/* Table Striped Rows */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #fafbfc;
}

/* Table Bordered - Simplified borders */
.table-bordered {
    border: 1px solid #e0e0e0;
}

    .table-bordered th {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

        .table-bordered th:last-child {
            border-right: none !important;
        }

    .table-bordered td {
        border: none;
        border-bottom: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
    }

        .table-bordered td:last-child {
            border-right: none;
        }

/* Table Hover - Removed hover effect */
.table-hover tbody tr:hover {
    background-color: inherit;
}

/* Sorting Icons - Already defined above */

/* Input fields in tables */
.table input[type="text"],
.table input[type="number"],
.table select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    transition: all 0.3s ease;
}

    .table input[type="text"]:focus,
    .table input[type="number"]:focus,
    .table select:focus {
        border-color: #005499;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1);
    }

/* Buttons in tables */
.table .btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.table .btn-primary {
    background-color: #005499;
    border-color: #005499;
    color: #fff;
}

    .table .btn-primary:hover {
        background-color: #003d73;
        border-color: #003d73;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
    }

.table .btn-danger {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
    color: #fff;
}

    .table .btn-danger:hover {
        background-color: #E53935;
        border-color: #E53935;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
    }

/* Responsive adjustments */
@media (max-width: 767px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        text-align: left;
        margin-bottom: 10px;
    }

    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center;
        margin-top: 10px;
    }
}
/* User Admin - Common Styles */

/* User Admin specific overrides */
.user-admin .main-header .logo a {
    color: #1e3a5f;
}

/* Header Cart & Wishlist Badge Styles */
/* Removed overflow: visible to allow mobile scrolling - only notifications-menu needs it for badges */

.user-admin .navbar-custom-menu .notifications-menu {
    overflow: visible !important;
}

    .user-admin .navbar-custom-menu .notifications-menu > a {
        position: relative;
        overflow: visible !important;
    }

        .user-admin .navbar-custom-menu .notifications-menu > a .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            min-width: 18px;
            height: 18px;
            padding: 2px 6px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1.4;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
            border-radius: 10px;
            animation: pulse 2s infinite;
            z-index: 10;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.user-admin .navbar-custom-menu .notifications-menu > a:hover .badge {
    animation: none;
}

/* Empty state styling */
.user-admin .dropdown-menu .empty-state-icon {
    font-size: 48px;
    color: #ddd;
    transition: all 0.3s ease;
}

    .user-admin .dropdown-menu .empty-state-icon:hover {
        color: #667eea;
        transform: scale(1.1);
    }

/* Custom button styles for user admin */
.btn-user-admin {
    background-color: #1e3a5f;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .btn-user-admin:hover {
        background-color: #2c4d73;
        color: #fff;
    }

.btn-user-admin-primary {
    background-color: #1e3a5f;
    color: #fff;
}

    .btn-user-admin-primary:hover {
        background-color: #2c4d73;
    }

.btn-user-admin-success {
    background-color: #28a745;
    color: #fff;
}

    .btn-user-admin-success:hover {
        background-color: #218838;
    }

.btn-user-admin-danger {
    background-color: #dc3545;
    color: #fff;
}

    .btn-user-admin-danger:hover {
        background-color: #c82333;
    }

/* Card styles for user admin */
.user-admin-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .user-admin-card .card-header {
        background-color: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 20px;
        font-weight: 600;
        color: #1e3a5f;
    }

    .user-admin-card .card-body {
        padding: 20px;
    }

/* Table styles for user admin */
.user-admin-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .user-admin-table thead {
        background-color: #1e3a5f;
        color: #fff;
    }

        .user-admin-table thead th {
            border: none;
            padding: 15px;
            font-weight: 600;
        }

    .user-admin-table tbody tr {
        border-bottom: 1px solid #e0e0e0;
    }

        .user-admin-table tbody tr:hover {
            background-color: #f8f9fa;
        }

    .user-admin-table tbody td {
        padding: 15px;
        border: none;
    }

/* Status badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

    .status-badge.active {
        background-color: #d4edda;
        color: #155724;
    }

    .status-badge.pending {
        background-color: #fff3cd;
        color: #856404;
    }

    .status-badge.inactive {
        background-color: #f8d7da;
        color: #721c24;
    }

    .status-badge.success {
        background-color: #d4edda;
        color: #155724;
    }

    .status-badge.warning {
        background-color: #fff3cd;
        color: #856404;
    }

    .status-badge.danger {
        background-color: #f8d7da;
        color: #721c24;
    }

/* Form styles for user admin */
.user-admin-form .form-group {
    margin-bottom: 20px;
}

.user-admin-form .form-label {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.user-admin-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
}

    .user-admin-form .form-control:focus {
        border-color: #1e3a5f;
        box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.25);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .user-admin-card .card-body {
        padding: 15px;
    }

    .user-admin-table thead th,
    .user-admin-table tbody td {
        padding: 10px;
    }
}

/* ============================================
   CHECKOUT STYLES
   ============================================ */
/* User Admin - My Postings Styles */

/* My Postings Header - Similar to Marketplace */
.marketplace-header {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .marketplace-header h3 {
        color: #005499;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .marketplace-header p {
        color: #666;
        font-size: 13px;
        margin: 0;
    }

.status-active {
    background: linear-gradient(135deg, #e6f0f7 0%, #d0e4f0 100%);
    color: #005499;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 84, 153, 0.2);
}

.status-pending {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #333333;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.status-inactive {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD5D5 100%);
    color: #FF6B6B;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.2);
}

.btn-action {
    padding: 6px 15px;
    font-size: 13px;
    margin: 2px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit {
    background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
}

    .btn-edit:hover {
        background: linear-gradient(135deg, #003d73 0%, #005499 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 84, 153, 0.4);
    }

.btn-delete {
    background: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
}

    .btn-delete:hover {
        background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
    }

.btn-view {
    background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
}

    .btn-view:hover {
        background: linear-gradient(135deg, #003d73 0%, #005499 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 84, 153, 0.4);
    }

.btn-inactivate {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgba(108, 117, 125, 0.3);
}

    .btn-inactivate:hover {
        background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(108, 117, 125, 0.4);
    }

.btn-activate {
    background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
}

    .btn-activate:hover {
        background: linear-gradient(135deg, #003d73 0%, #005499 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 84, 153, 0.4);
    }

.btn-post-item {
    display: inline-block;
    background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%);
    color: #fff !important;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 84, 153, 0.3);
    text-decoration: none;
}

    /* Normal + hover + focus + active – keep text white */
    .btn-post-item,
    .btn-post-item:link,
    .btn-post-item:visited,
    .btn-post-item:hover,
    .btn-post-item:focus,
    .btn-post-item:active {
        color: #fff !important;
        text-decoration: none;
    }

        /* Make sure children (icon + any spans) also stay white on hover */
        .btn-post-item *,
        .btn-post-item:hover * {
            color: #fff !important;
        }

        /* Hover background / effect only */
        .btn-post-item:hover {
            background: linear-gradient(135deg, #003d73 0%, #005499 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 84, 153, 0.4);
        }





.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.price-discount {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 14px;
}

.discount-percent {
    background: linear-gradient(135deg, #005499 0%, #003d73 100%);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
}

/* Table Styling - Enhanced Design */
.box {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
}

.box-body {
    padding: 25px;
    background: #fff;
}

.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

/* Mobile: Allow horizontal scrolling for tables */
@media (max-width: 767px) {
    .table-responsive {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

    .table thead {
        background: linear-gradient(135deg, #005499 0%, #1a6bb3 100%) !important;
    }

        /*.user-admin #myPostingsTable thead th,
        #myPostingsTable thead th,
        .table thead th {
            color: #ffffff !important;
            font-weight: 700 !important;
            font-size: 14px !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            border: none !important;
            padding: 18px 20px !important;
            vertical-align: middle !important;
            white-space: nowrap !important;
        }

            .user-admin #myPostingsTable thead th *,
            #myPostingsTable thead th *,
            .table thead th * {
                color: #ffffff !important;
            }*/

        /* Ensure all text and elements in table header are white */
        .table thead th,
        .table thead th *,
        .table thead th a,
        .table thead th span,
        .table thead th div,
        .table thead th label,
        .table thead th input,
        .table thead th select,
        table.dataTable thead th,
        table.dataTable thead th *,
        table.dataTable thead th.sorting,
        table.dataTable thead th.sorting_asc,
        table.dataTable thead th.sorting_desc {
            color: #ffffff !important;
        }

/* Override any DataTables default styles */
table.dataTable thead th {
    color: #ffffff !important;
}

/* Force white color for all text content in headers */
.table thead th,
table.dataTable thead th {
    color: #ffffff !important;
}

    .table thead th *,
    table.dataTable thead th * {
        color: #ffffff !important;
    }

    /* Specific overrides for common header text elements */
    .table thead th strong,
    .table thead th b,
    .table thead th em,
    .table thead th i,
    table.dataTable thead th strong,
    table.dataTable thead th b,
    table.dataTable thead th em,
    table.dataTable thead th i {
        color: #ffffff !important;
    }

    /* Universal selector for all elements inside header cells */
    .table thead th *,
    table.dataTable thead th * {
        color: #ffffff !important;
        font-weight: inherit;
    }

.table tbody {
    background: #fff;
}

    .table tbody tr {
        border-bottom: 1px solid #e0e0e0;
        background: #fff;
    }

        .table tbody tr:nth-child(even) {
            background: #fafbfc;
        }

        .table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Removed hover effect as requested */
        .table tbody tr:hover {
            background-color: inherit;
            transform: none;
            box-shadow: none;
        }

    .table tbody td {
        padding: 18px 20px;
        vertical-align: middle;
        color: #333;
        font-size: 14px;
        border: none;
        border-bottom: 1px solid #e0e0e0;
        line-height: 1.0;
    }

        .table tbody td:first-child {
            font-weight: 600;
            color: #005499;
        }

        /* Removed hover color changes */

        /* Action buttons container */
        .table tbody td:last-child {
            white-space: nowrap;
        }

            .table tbody td:last-child .btn-action {
                margin: 0 3px;
            }

.dataTables_wrapper .dataTables_length select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

    .dataTables_wrapper .dataTables_length select:focus {
        border-color: #005499;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1);
    }

.dataTables_wrapper .dataTables_filter input {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

    .dataTables_wrapper .dataTables_filter input:focus {
        border-color: #005499;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1);
    }

/* DataTables Pagination - Custom styling to match our color scheme */
/* Override theme-primary colors with our custom colors */
.theme-primary .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.theme-primary .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border: 1px solid #005499 !important;
    background-color: #005499 !important;
    color: #ffffff !important;
}

.theme-primary .paging_simple_numbers .pagination .paginate_button.active a,
.theme-primary .paging_simple_numbers .pagination .paginate_button:hover a {
    background-color: #005499 !important;
    color: #ffffff !important;
}

.dataTables_wrapper {
    margin-top: 20px;
}


/* ============================================
   CART STYLES
   ============================================ */
/* Cart Page Styles */

/* Marketplace Header Style (Same as Marketplace page) */
.marketplace-header {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

    .marketplace-header h3 {
        color: #005499;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .marketplace-header p {
        color: #666;
        font-size: 13px;
        margin: 0;
    }

    .marketplace-header .breadcrumb {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .marketplace-header .breadcrumb-item a.text-success {
        color: #27ae60 !important;
        text-decoration: none;
    }

    .marketplace-header .breadcrumb-item.active {
        color: var(--primary-color) !important;
    }

/* Seller Section */
.cart-seller-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Seller Header */
.seller-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 15px 20px;
}

    .seller-header .d-flex {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.seller-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.seller-header .btn-success {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
    color: #fff !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    white-space: nowrap;
    margin-left: auto;
}

    .seller-header .btn-success:hover {
        background: #229954 !important;
        border-color: #229954 !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

/* Shipping Info Bar */
.shipping-info-bar {
    background: #d4edda;
    padding: 12px 20px;
    border-bottom: 1px solid #c3e6cb;
}

    .shipping-info-bar .d-flex {
        flex-wrap: wrap;
        gap: 15px;
    }

    .shipping-info-bar span {
        font-size: 12px;
        color: #155724;
        font-weight: 500;
        white-space: nowrap;
    }

/* Cart Product Items */
.cart-product-items {
    padding: 0;
    background: #fff;
}

.cart-product-item {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
    background: #fff;
}

    .cart-product-item:hover {
        background-color: #f8f9fa;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .cart-product-item:last-child {
        border-bottom: none;
    }

    .cart-product-item .row {
        margin: 0;
    }

/* Cart Checkbox */
.cart-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.cart-item-checkbox {
    width: 22px !important;
    height: 22px !important;
    cursor: pointer;
    accent-color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 4px !important;
    background-color: #fff !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    left: 0 !important;
}

    .cart-item-checkbox:checked {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }

    .cart-item-checkbox:focus {
        outline: 2px solid rgba(0, 84, 153, 0.3);
        outline-offset: 2px;
    }

/* Cart Product Image */
.cart-product-image {
    width: 80px;
    height: 80px;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-lighter-gray);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Cart Item Details */
.cart-item-details {
    padding-left: 10px;
}

.cart-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

    .cart-product-name .status-label {
        background: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
        color: #fff;
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 10px;
        font-weight: 600;
        margin-left: 5px;
    }

.cart-product-ndc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.cart-exp-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

    .cart-exp-date i {
        font-size: 14px;
        color: var(--primary-color);
    }

    .cart-exp-date .product-icons {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-left: auto;
    }

/* Cart Package Info */
.cart-package-info {
    font-size: 12px;
    line-height: 1.5;
}

    .cart-package-info .package-type {
        color: #d32f2f;
        font-weight: 600;
        margin-bottom: 4px;
        display: block;
    }

    .cart-package-info .package-sealed {
        color: var(--text-secondary);
        font-size: 11px;
        display: block;
    }

/* Cart Unit Price */
.cart-unit-price {
    text-align: left;
}

    .cart-unit-price .unit-price-label {
        font-size: 10px;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
        display: block;
    }

    .cart-unit-price .unit-price-value {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-primary);
        display: block;
    }

/* Cart Quantity Section */
.cart-qty-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

    .cart-qty-section .available-qty {
        font-size: 11px;
        color: var(--text-secondary);
        font-weight: 500;
        display: block;
    }

.cart-qty-input-wrapper {
    width: 70px;
}

.cart-qty-input {
    width: 100% !important;
    padding: 7px 8px !important;
    border: 2px solid var(--border-light) !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    text-align: center !important;
    background: #fff !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-appearance: textfield !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

    .cart-qty-input::-webkit-inner-spin-button,
    .cart-qty-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .cart-qty-input:focus {
        outline: none !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1) !important;
    }

/* Cart Item Total */
.cart-item-total {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

/* Delete Button */
.btn-delete-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

    .btn-delete-item:hover {
        color: #d32f2f;
        background: rgba(211, 47, 47, 0.1);
        transform: scale(1.1);
    }

    .btn-delete-item i {
        font-size: 22px;
    }

/* Seller Total Bar */
.seller-total-bar {
    background: #e9ecef;
    padding: 15px 20px;
    border-top: 2px solid var(--border-light);
}

.seller-total-text {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

    .seller-total-text strong {
        font-weight: 700;
        font-size: 18px;
        color: var(--primary-color);
    }

/* Cart Footer Section */
.cart-footer-section {
    margin-top: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cart-total-bar {
    background: #e9ecef;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-light);
}

.cart-total-text {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

    .cart-total-text strong {
        font-weight: 700;
        font-size: 24px;
        color: var(--primary-color);
    }

.cart-footer-buttons {
    background: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

    .cart-footer-buttons .btn {
        padding: 12px 35px;
        font-weight: 600;
        border-radius: 4px;
        font-size: 14px;
        transition: all 0.3s ease;
        border: none;
    }

    .cart-footer-buttons .btn-warning {
        background: #ffc107;
        color: #000;
        box-shadow: 0 2px 5px rgba(255, 193, 7, 0.3);
    }

        .cart-footer-buttons .btn-warning:hover {
            background: #e0a800;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
        }

    .cart-footer-buttons .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
        color: #fff;
        box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
    }

        .cart-footer-buttons .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 84, 153, 0.4);
        }

/* Responsive */
@media (max-width: 768px) {
    .cart-product-item .row > div {
        margin-bottom: 10px;
    }

    .cart-footer-buttons {
        flex-direction: column;
    }

        .cart-footer-buttons .btn {
            width: 100%;
        }
}

/* Checkout Page Styles - Reusing Cart Styles */

/* Marketplace Header Style (Same as Cart page) */
.content-page-header {
    background-color: #fff;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

    .content-page-header h3 {
        color: #005499;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .content-page-header p {
        color: #666;
        font-size: 13px;
        margin: 0;
    }

    .content-page-header .breadcrumb {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .content-page-header .breadcrumb-item a.text-success {
        color: #27ae60 !important;
        text-decoration: none;
    }

    .content-page-header .breadcrumb-item.active {
        color: var(--primary-color) !important;
    }

/* Reuse Cart Styles - Seller Section, Product Items, etc. */
/* All cart styles are imported via cart.css or can be reused */

/* Shipping Information Section */
.checkout-shipping-info {
    background: #d4edda;
    border-top: 1px solid #c3e6cb;
    padding: 0;
}

.checkout-shipping-header {
    background: #28a745;
    color: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #c3e6cb;
}

    .checkout-shipping-header h5 {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

.checkout-shipping-body {
    padding: 15px 20px;
}

.checkout-business-hours {
    font-size: 13px;
    color: #155724;
}

    .checkout-business-hours p {
        font-size: 13px;
        color: #155724;
        margin-bottom: 4px;
        line-height: 1.4;
    }

    .checkout-business-hours .small {
        font-size: 12px;
        line-height: 1.4;
    }

    .checkout-business-hours strong {
        font-weight: 600;
    }

.checkout-shipping-offers {
    font-size: 13px;
    color: #155724;
}

    .checkout-shipping-offers p {
        margin-bottom: 4px;
    }

    .checkout-shipping-offers span {
        display: block;
        font-weight: 500;
        font-size: 12px;
        line-height: 1.4;
    }

.checkout-shipping-methods {
    font-size: 13px;
    color: #155724;
}

    .checkout-shipping-methods p {
        margin-bottom: 4px;
    }

.checkout-shipping-radio {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

    .checkout-shipping-radio .form-check {
        margin: 0;
    }

    .checkout-shipping-radio .form-check-input {
        margin-top: 0.35rem;
        cursor: pointer;
        width: 16px;
        height: 16px;
    }

    .checkout-shipping-radio .form-check-label {
        cursor: pointer;
        font-weight: 500;
        margin-left: 6px;
        font-size: 12px;
    }

.checkout-shipping-cost {
    font-size: 13px;
    color: #155724;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}

    .checkout-shipping-cost p {
        margin: 0;
        font-size: 13px;
    }

/* Coupon Code Section */
.checkout-coupon-section {
    background: #e9ecef;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.checkout-coupon-header {
    background: #6c757d;
    color: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #dee2e6;
}

    .checkout-coupon-header h5 {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        margin: 0;
    }

.checkout-coupon-body {
    padding: 20px;
}

.checkout-coupon-input {
    border: 2px solid var(--border-light);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
}

    .checkout-coupon-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1);
        outline: none;
    }

.checkout-apply-btn {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .checkout-apply-btn:hover {
        background: linear-gradient(135deg, #5a32a3 0%, #4a2a8a 100%);
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(111, 66, 193, 0.3);
        color: #fff;
    }

.checkout-my-offers {
    font-size: 13px;
}

    .checkout-my-offers strong {
        font-weight: 600;
        color: var(--text-primary);
    }

    .checkout-my-offers .text-muted {
        color: #6c757d;
    }

/* Order Summary Box (Right Side) */
.checkout-order-summary-box {
    background: #27ae60;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 25px;
}

.checkout-order-summary-header {
    background: #27ae60;
    color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .checkout-order-summary-header h5 {
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        margin: 0;
    }

.checkout-order-summary-body {
    padding: 20px;
    background: #27ae60;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

.checkout-summary-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.checkout-summary-value {
    color: #fff;
    font-weight: 600;
}

.checkout-total-row {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    padding-top: 15px;
}

.checkout-total {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Payment Information Section */
.checkout-payment-info {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .checkout-payment-info p {
        font-size: 14px;
        color: var(--text-primary);
        line-height: 1.6;
    }

    .checkout-payment-info strong {
        font-weight: 700;
        color: var(--text-primary);
    }

.checkout-terms {
    font-size: 14px;
}

    .checkout-terms .form-check-input {
        margin-top: 0.35rem;
        cursor: pointer;
    }

    .checkout-terms .form-check-label {
        cursor: pointer;
        margin-left: 8px;
        color: var(--text-primary);
        line-height: 1.6;
    }

        .checkout-terms .form-check-label a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

            .checkout-terms .form-check-label a:hover {
                text-decoration: underline;
            }

.checkout-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

    .checkout-footer .text-muted {
        font-size: 12px;
        color: #6c757d;
    }

.checkout-footer-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.checkout-footer .btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.checkout-footer .btn-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

    .checkout-footer .btn-warning:hover {
        background: #e0a800;
        border-color: #d39e00;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(255, 193, 7, 0.3);
    }

.checkout-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-color: var(--primary-color);
    color: #fff;
}

    .checkout-footer .btn-primary:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        border-color: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
        color: #fff;
    }

/* Responsive */
@media (max-width: 991px) {
    .checkout-order-summary-box {
        margin-top: 25px;
    }

    .checkout-coupon-section {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .checkout-shipping-offers span {
        display: block;
        margin-bottom: 5px;
    }

    .checkout-footer .row > div {
        margin-bottom: 15px;
    }

    .checkout-footer-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .checkout-footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }

        .checkout-footer .btn:last-child {
            margin-bottom: 0;
        }
}

/* ============================================
   USER-ADMIN COMMON STYLES
   ============================================ */

.table .btn-primary {
    background-color: #005499;
    border-color: #005499;
    color: #fff;
}

    .table .btn-primary:hover {
        background-color: #003d73;
        border-color: #003d73;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 84, 153, 0.3);
    }

.table .btn-danger {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
    color: #fff;
}

    .table .btn-danger:hover {
        background-color: #E53935;
        border-color: #E53935;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
    }

/* Responsive adjustments */
@media (max-width: 767px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        text-align: left;
        margin-bottom: 10px;
    }

    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center;
        margin-top: 10px;
    }
}
/* User Admin - Common Styles */

/* User Admin specific overrides */
.user-admin .main-header .logo a {
    color: #1e3a5f;
}

/* Header Cart & Wishlist Badge Styles */
/* Removed overflow: visible to allow mobile scrolling - only notifications-menu needs it for badges */

.user-admin .navbar-custom-menu .notifications-menu {
    overflow: visible !important;
}

    .user-admin .navbar-custom-menu .notifications-menu > a {
        position: relative;
        overflow: visible !important;
    }

        .user-admin .navbar-custom-menu .notifications-menu > a .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            min-width: 18px;
            height: 18px;
            padding: 2px 6px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1.4;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
            border-radius: 10px;
            animation: pulse 2s infinite;
            z-index: 10;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.user-admin .navbar-custom-menu .notifications-menu > a:hover .badge {
    animation: none;
}

/* Empty state styling */
.user-admin .dropdown-menu .empty-state-icon {
    font-size: 48px;
    color: #ddd;
    transition: all 0.3s ease;
}

    .user-admin .dropdown-menu .empty-state-icon:hover {
        color: #667eea;
        transform: scale(1.1);
    }

/* Custom button styles for user admin */
.btn-user-admin {
    background-color: #1e3a5f;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .btn-user-admin:hover {
        background-color: #2c4d73;
        color: #fff;
    }

.btn-user-admin-primary {
    background-color: #1e3a5f;
    color: #fff;
}

    .btn-user-admin-primary:hover {
        background-color: #2c4d73;
    }

.btn-user-admin-success {
    background-color: #28a745;
    color: #fff;
}

    .btn-user-admin-success:hover {
        background-color: #218838;
    }

.btn-user-admin-danger {
    background-color: #dc3545;
    color: #fff;
}

    .btn-user-admin-danger:hover {
        background-color: #c82333;
    }

/* Card styles for user admin */
.user-admin-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .user-admin-card .card-header {
        background-color: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 20px;
        font-weight: 600;
        color: #1e3a5f;
    }

    .user-admin-card .card-body {
        padding: 20px;
    }

/* Table styles for user admin */
.user-admin-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .user-admin-table thead {
        background-color: #1e3a5f;
        color: #fff;
    }

        .user-admin-table thead th {
            border: none;
            padding: 15px;
            font-weight: 600;
        }

    .user-admin-table tbody tr {
        border-bottom: 1px solid #e0e0e0;
    }

        .user-admin-table tbody tr:hover {
            background-color: #f8f9fa;
        }

    .user-admin-table tbody td {
        padding: 15px;
        border: none;
    }

/* Status badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

    .status-badge.active {
        background-color: #d4edda;
        color: #155724;
    }

    .status-badge.pending {
        background-color: #fff3cd;
        color: #856404;
    }

    .status-badge.inactive {
        background-color: #f8d7da;
        color: #721c24;
    }

    .status-badge.success {
        background-color: #d4edda;
        color: #155724;
    }

    .status-badge.warning {
        background-color: #fff3cd;
        color: #856404;
    }

    .status-badge.danger {
        background-color: #f8d7da;
        color: #721c24;
    }

/* Form styles for user admin */
.user-admin-form .form-group {
    margin-bottom: 20px;
}

.user-admin-form .form-label {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.user-admin-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
}

    .user-admin-form .form-control:focus {
        border-color: #1e3a5f;
        box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.25);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .user-admin-card .card-body {
        padding: 15px;
    }

    .user-admin-table thead th,
    .user-admin-table tbody td {
        padding: 10px;
    }
}

/* Mobile Responsive - Navbar Icons in One Row with Native Scrolling */
@media (max-width: 767px) {
    /* Make navbar flex container to keep app-menu and navbar-custom-menu side by side */
    .user-admin .navbar.navbar-static-top {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .user-admin .app-menu {
        flex-shrink: 0;
        margin-right: 10px;
    }

    /* Apply scrolling directly to navbar-custom-menu */
    .user-admin .navbar-custom-menu,
    .navbar-custom-menu.r-side,
    .main-header .navbar-custom-menu {
        flex: 1;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        position: relative;
        max-width: 100%;
        width: 100%;
        touch-action: pan-x !important;
        -ms-touch-action: pan-x !important;
        scrollbar-width: thin;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        /* Make navbar-nav fit content width */
        .user-admin .navbar-custom-menu .navbar-nav,
        .navbar-custom-menu .navbar-nav,
        .main-header .navbar-custom-menu .navbar-nav {
            display: flex !important;
            flex-wrap: nowrap !important;
            width: max-content !important;
            min-width: 100% !important;
        }

            /* Prevent items from shrinking */
            .user-admin .navbar-custom-menu .navbar-nav > li,
            .navbar-custom-menu .navbar-nav > li {
                flex-shrink: 0 !important;
            }

        /* Thin scrollbar for navbar-custom-menu */
        .user-admin .navbar-custom-menu::-webkit-scrollbar,
        .navbar-custom-menu::-webkit-scrollbar {
            height: 4px;
        }

        .user-admin .navbar-custom-menu::-webkit-scrollbar-track,
        .navbar-custom-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .user-admin .navbar-custom-menu::-webkit-scrollbar-thumb,
        .navbar-custom-menu::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 2px;
        }

    /* Table scrolling on mobile */
    .table-responsive {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x !important;
        -ms-touch-action: pan-x !important;
        width: 100%;
        display: block;
    }

        .table-responsive table {
            width: max-content !important;
            min-width: 100%;
        }

        .table-responsive::-webkit-scrollbar {
            height: 6px;
        }

        .table-responsive::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .table-responsive::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 3px;
        }

            .table-responsive::-webkit-scrollbar-thumb:hover {
                background: rgba(0, 0, 0, 0.5);
            }

    /* Ensure tables can scroll horizontally */
    .table {
        width: max-content !important;
        min-width: 100%;
    }

    /* Box containers should allow overflow */
    .box {
        overflow: visible !important;
    }

    .box-body {
        overflow: visible !important;
    }
}

/* ============================================
   ESSENTIAL LAYOUT STRUCTURE FROM adminstyle.css
   ============================================
   Core layout components extracted from framework CSS
   Structure only - no colors (colors handled by color-theme.css)
   ============================================ */

/* Basic Structure */
.wrapper {
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: transparent;
    position: relative;
}

    .wrapper:before, .wrapper:after {
        content: " ";
        display: table;
    }

body {
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    font-family: "Open Sans", serif;
    line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
        font-size: 65%;
    }

h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 0.7142857143rem;
}

.h1, h1 {
    font-size: 2.5714285714285716rem;
}

.h2, h2 {
    font-size: 2.142857142857143rem;
}

.h3, h3 {
    font-size: 1.7142857142857142rem;
}

.h4, h4 {
    font-size: 1.2857142857142858rem;
}

.h5, h5 {
    font-size: 1.1428571428571428rem;
}

.h6, h6 {
    font-size: 1rem;
}

h1, h2, h3, .h1, .h2, .h3 {
    margin-top: 0.7142857143rem;
    margin-bottom: 0.7142857143rem;
}

img {
    max-width: 100%;
}

.img-fluid {
    width: 100%;
}

.base-font {
    font-family: "Open Sans", sans-serif !important;
}

.heading-font {
    font-family: "Open Sans", sans-serif !important;
}

/* Content Wrapper */
.content-wrapper {
    -moz-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    min-height: 100%;
    background-color: #f8f8f8;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 0;
    margin-right: 1.5rem;
    z-index: 820;
    margin-left: 18.5rem;
}

@media (max-width: 767px) {
    .content-wrapper {
        margin-right: 0.75rem;
        margin-left: 0.75rem !important;
    }
}

@media (min-width: 768px) {
    .sidebar-collapse .content-wrapper, .sidebar-collapse .main-footer {
        margin-left: 0;
    }
}

.content {
    min-height: 250px;
    padding: 1.5rem 0 0px 0;
    margin-right: auto;
    margin-left: auto;
}

.main-footer {
    -moz-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    z-index: 820;
    padding: 1.5rem;
    border-top: 0px solid #cccccc;
    z-index: 1;
    position: relative;
}

.fixed .content-wrapper {
    margin-top: 81px;
}

.fixed .main-header {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
}

.fixed .main-sidebar {
    position: fixed;
}

.fixed .left-side {
    position: fixed;
}

.fixed .right-side {
    margin-top: 81px;
}

.hold-transition .content-wrapper,
.hold-transition .left-side,
.hold-transition .main-footer,
.hold-transition .main-header .logo,
.hold-transition .main-header .navbar,
.hold-transition .main-sidebar,
.hold-transition .menu-open .fa-angle-left,
.hold-transition .right-side {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}

.layout-boxed {
    background: #f3f6f9;
}

    .layout-boxed .wrapper {
        width: 95%;
        max-width: 1440px;
        margin: 0 auto;
        min-height: 100%;
        box-shadow: 0px 2px 5px 0px rgba(19, 23, 38, 0.05);
        position: relative;
        background: #f4f5f9;
    }

.fixedlayout-boxed .wrapper {
    max-width: 100%;
}

.container-full {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    .content-wrapper {
        margin-left: 0;
    }

    .main-footer {
        margin-left: 0;
        text-align: center;
    }

    .fixed .content-wrapper {
        margin-top: 125px;
    }

    .fixed .right-side {
        margin-top: 125px;
    }
}

@media (min-width: 1900px) {
    .layout-boxed .wrapper {
        width: 95%;
        max-width: 1850px;
    }
}

/* Main Header Structure */
.main-header {
    max-height: 125px;
    z-index: 999;
    position: relative;
}

    .main-header div.logo-box {
        width: 17rem;
        float: left;
        -webkit-transition: -webkit-transform .3s ease-in-out, width .3s ease-in-out;
        -moz-transition: -moz-transform .3s ease-in-out, width .3s ease-in-out;
        -o-transition: -o-transform .3s ease-in-out, width .3s ease-in-out;
        transition: transform .3s ease-in-out, width .3s ease-in-out;
        border-top-right-radius: 0px;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .main-header .navbar {
        -moz-transition: margin-left 0.3s ease-in-out;
        -o-transition: margin-left 0.3s ease-in-out;
        -webkit-transition: margin-left 0.3s ease-in-out;
        transition: margin-left 0.3s ease-in-out;
        margin-bottom: 0;
        margin-left: 18.5rem;
        margin-right: 1.5rem;
        margin-top: 1.5rem;
        min-height: 60px;
        border-radius: 5px;
        border-bottom: 0px solid rgba(72, 94, 144, 0.16);
        padding: 0 0.5rem;
        box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
    }

    .main-header .logo {
        -moz-transition: width 0.3s ease-in-out;
        -o-transition: width 0.3s ease-in-out;
        -webkit-transition: width 0.3s ease-in-out;
        transition: width 0.3s ease-in-out;
        display: block;
        height: 60px;
        font-size: 1.2rem;
        line-height: 60px;
        text-align: left;
        padding: 0 15px;
        position: relative;
        z-index: 999;
    }

        .main-header .logo .logo-lg {
            line-height: 60px;
            display: inline-block;
            padding-left: 5px;
        }

        .main-header .logo .logo-mini {
            display: inline-block;
        }

    .main-header .navbar-custom-menu {
        float: right;
    }

@media (max-width: 767px) {
    .main-header {
        position: relative;
        z-index: 999;
    }

        .main-header .navbar {
            width: 100%;
            float: none;
            margin: 0;
            z-index: 999;
            border-radius: 0;
            box-shadow: 0 7px 8px 0 rgba(34, 41, 47, 0.05);
        }

        .main-header .logo {
            width: 100%;
            float: none;
            text-align: center;
        }
}

/* Main Sidebar Structure */
.main-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 95px;
    min-height: 100%;
    width: 17rem;
    z-index: 810;
    -webkit-transition: -webkit-transform .3s ease-in-out, width .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out, width .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out, width .3s ease-in-out;
    transition: transform .3s ease-in-out, width .3s ease-in-out;
    border-top-right-radius: 20px;
}

.sidebar {
    padding-bottom: 10px;
}

.sidebar-menu {
    list-style: none;
    margin: 0 0px;
    padding: 0px 0px 30px 0px;
}

    .sidebar-menu > li {
        position: relative;
        margin: 0 0px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 0;
        border-left: 0px solid transparent;
    }

        .sidebar-menu > li > a {
            padding-left: 0px;
            -webkit-transition: -webkit-transform .3s ease-in-out, .3s ease-in-out;
            -moz-transition: -moz-transform .3s ease-in-out, .3s ease-in-out;
            -o-transition: -o-transform .3s ease-in-out, .3s ease-in-out;
            transition: transform .3s ease-in-out, .3s ease-in-out;
            padding: 10px 0px;
            border-radius: 5px;
            display: block;
        }

            .sidebar-menu > li > a > i {
                width: 30px;
                line-height: 28px;
                font-size: 1.5714285714rem;
                display: inline-block;
                vertical-align: middle;
                text-align: center;
                border-radius: 5px;
                margin-right: 5px;
                background-color: transparent;
                /* Color handled by color-theme.css for white icons */
            }

            .sidebar-menu > li > a > svg {
                width: 18px;
                display: inline-block;
                vertical-align: middle;
                text-align: center;
                margin-right: 10px;
            }

    .sidebar-menu li.nav-devider {
        height: 1px;
        display: block;
        margin: 15px 0;
    }

    .sidebar-menu li.header {
        padding: 15px 25px 10px 25px;
        font-size: 12px;
        font-weight: 400;
        color: #b5b5c3;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
    }

    .sidebar-menu > li.header.line {
        background-color: #f3f6f9;
        height: 2px;
        padding: 0;
        margin: 20px 0px;
    }

    .sidebar-menu > li:hover.header, .sidebar-menu > li:active.header, .sidebar-menu > li:focus.header, .sidebar-menu > li.active.header {
        background: transparent !important;
        border-color: transparent !important;
    }

    .sidebar-menu li > a > .fa-angle-right {
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 10px;
        -webkit-transition: transform .5s ease;
        -o-transition: transform .5s ease;
        transition: transform .5s ease;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -8px;
    }

    .sidebar-menu li > a > .pull-right-container > i {
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 10px;
        -webkit-transition: transform .5s ease;
        -o-transition: transform .5s ease;
        transition: transform .5s ease;
    }

    .sidebar-menu li > a > .pull-right-container > .fa-angle-right {
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 10px;
        -webkit-transition: transform .5s ease;
        -o-transition: transform .5s ease;
        transition: transform .5s ease;
    }

    .sidebar-menu .menu-open > a > .fa-angle-right {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar-menu .menu-open > a > .pull-right-container > .fa-angle-right {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar-menu .menu-open > a > .pull-right-container > i {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar-menu > li:hover > a {
        padding-left: 20px !important;
    }

    .sidebar-menu > li:hover > a, .sidebar-menu > li:active > a, .sidebar-menu > li.active > a {
        opacity: 1;
    }

    .sidebar-menu > li:active > a, .sidebar-menu > li.active > a, .sidebar-menu > li:focus > a {
        font-weight: 500;
    }

    .sidebar-menu > li.treeview.menu-open {
        background-color: rgba(235, 237, 243, 0) !important;
    }

        .sidebar-menu > li.treeview.menu-open > a {
            opacity: 1;
        }

    .sidebar-menu > li:hover > a > i, .sidebar-menu > li:active > a > i, .sidebar-menu > li.active > a > i {
        color: #b5b5c3;
    }

    .sidebar-menu > li:hover > a > svg, .sidebar-menu > li:active > a > svg, .sidebar-menu > li.active > a > svg {
        color: #b5b5c3;
    }

    .sidebar-menu > li.menu-open > a > i {
        color: #b5b5c3;
    }

    .sidebar-menu > li.menu-open > a > svg {
        color: #b5b5c3;
    }

    .sidebar-menu > li .badge {
        margin-right: 5px;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        line-height: 16px;
        text-align: center;
        font-weight: 300;
        margin-top: 3px;
    }

    .sidebar-menu > li .label {
        margin-right: 5px;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        line-height: 16px;
        text-align: center;
        font-weight: 300;
    }

    .sidebar-menu .active > .treeview-menu {
        display: block;
    }

    .sidebar-menu > li.menu-open > .treeview-menu {
        display: block;
    }

    .sidebar-menu > li.treeview.menu-open > .treeview-menu {
        display: block;
    }

    .sidebar-menu li > a {
        position: relative;
        font-weight: 500;
        opacity: 0.9;
        white-space: nowrap;
        align-items: center;
        line-height: 25px;
        text-decoration: none !important;
    }

        .sidebar-menu li > a > span {
            top: 1px;
            position: relative;
        }

        .sidebar-menu li > a > .pull-right-container {
            position: absolute;
            right: 0px;
            top: 50%;
            margin-top: -15px;
        }

    .sidebar-menu:hover {
        overflow: visible;
    }

    .sidebar-menu .treeview-menu > li.active > a {
        opacity: 1;
    }

        .sidebar-menu .treeview-menu > li.active > a:hover {
            opacity: 1;
        }

    .sidebar-menu .treeview-menu > li > a:hover {
        opacity: 1;
    }

.sidebar-collapse .sidebar-menu.tree {
    padding: 0;
    margin: 0;
}

.sidebar-collapse .sidebar-menu > li:hover > a, .sidebar-collapse .sidebar-menu > li:active > a, .sidebar-collapse .sidebar-menu > li.active > a {
    border-radius: 5px;
}

.sidebar-collapse .sidebar-menu > li.menu-open > a {
    border-radius: 5px;
}

.sidebar-collapse .sidebar-menu > li:hover > a {
    padding-left: 0px !important;
}

/* Treeview Menu */
.treeview-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .treeview-menu .treeview-menu {
        padding-left: 10px;
    }

    .treeview-menu > li {
        margin: 0;
    }

        .treeview-menu > li > a {
            padding: 5px 15px;
            display: block;
            font-size: 1rem;
            border-radius: 5px;
            -webkit-transition: -webkit-transform .3s ease-in-out, .3s ease-in-out;
            -moz-transition: -moz-transform .3s ease-in-out, .3s ease-in-out;
            -o-transition: -o-transform .3s ease-in-out, .3s ease-in-out;
            transition: transform .3s ease-in-out, .3s ease-in-out;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none !important;
        }

            .treeview-menu > li > a:hover {
                padding-left: 20px;
                color: rgba(255, 255, 255, 1);
                background-color: rgba(255, 255, 255, 0.1);
            }

        .treeview-menu > li.active > a {
            color: rgba(255, 255, 255, 1);
            background-color: rgba(255, 255, 255, 0.15);
        }

            .treeview-menu > li.active > a:hover {
                color: rgba(255, 255, 255, 1);
                background-color: rgba(255, 255, 255, 0.2);
            }

        .treeview-menu > li > a > i {
            width: 20px;
            padding-right: 20px;
            padding-left: 10px;
        }

        .treeview-menu > li > a > .fa-angle-down,
        .treeview-menu > li > a > .fa-angle-left {
            width: auto;
        }

        .treeview-menu > li > a > .pull-right-container > .fa-angle-down,
        .treeview-menu > li > a > .pull-right-container > .fa-angle-left {
            width: auto;
        }

.sidebar-collapse .treeview-menu > li {
    margin: 0;
}

    .sidebar-collapse .treeview-menu > li > a {
        padding: 5px 10px 5px 10px;
    }

/* User Panel */
.user-panel {
    position: relative;
    width: 100%;
    padding: 10px 0 10px;
}

    .user-panel:before, .user-panel:after {
        content: " ";
        display: table;
    }

    .user-panel > .image > img {
        width: 100%;
        max-width: 25%;
        height: auto;
        margin: 0 10px;
        border: 2px solid rgba(23, 43, 76, 0.13);
    }

    .user-panel > .info {
        padding: 5px;
        line-height: 1;
        margin: 0 auto;
        text-align: left;
        position: absolute;
        left: 60px;
    }

        .user-panel > .info > p {
            font-weight: 300;
            margin-bottom: 9px;
        }

        .user-panel > .info > a {
            text-decoration: none;
            padding-right: 5px;
            margin-top: 3px;
            font-size: 11px;
        }

            .user-panel > .info > a > i {
                margin-right: 3px;
            }

.main-sidebar .user-panel {
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-collapse .user-panel > .image > img {
    max-width: 50px;
    margin: 0 0px;
}

/* User Profile */
.user-profile .info {
    width: auto;
    visibility: visible;
    opacity: 1;
    height: 40px;
    overflow: hidden;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.user-profile .btn-group {
    display: block;
}

    .user-profile .btn-group .btn {
        width: 100%;
        border-radius: 0;
        background-color: rgba(23, 43, 76, 0.4);
        border: none;
        text-align: left;
        padding: 5px 15px;
        color: #ffffff;
    }

    .user-profile .btn-group button.btn.dropdown-toggle::after {
        position: absolute;
        right: 20px;
        top: 15px;
    }

.user-profile .profile-pic {
    padding: 15px 0;
    text-align: center;
}

.user-profile .ulogo {
    text-align: center;
    padding: 20px 0 0;
    font-size: 1.286rem;
    color: #ffffff;
}

.user-profile img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 100px !important;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.user-profile .dropdown-menu {
    left: 0px;
    right: 0px;
    width: 180px;
}

.user-profile .profile-setting li a svg {
    width: 18px;
}

.sidebar-menu > li.user-profile:hover > a, .sidebar-menu > li.user-profile:active > a, .sidebar-menu > li.user-profile.active > a {
    color: #000000;
    background-color: transparent !important;
}

    .sidebar-menu > li.user-profile:hover > a .email-id, .sidebar-menu > li.user-profile:active > a .email-id, .sidebar-menu > li.user-profile.active > a .email-id {
        color: rgba(23, 43, 76, 0.7);
    }

.sidebar-menu > li.user-profile.menu-open > a {
    color: #000000;
    background-color: transparent !important;
}

.sidebar-menu > li.user-profile > a {
    opacity: 1;
    padding: 25px;
    display: flex;
}

.sidebar-menu > li.user-profile > .treeview-menu {
    background-color: #172b4c !important;
}

.sidebar-menu .user-profile > a img {
    width: 45px;
    border-radius: 100%;
    margin-right: 10px;
}

.sidebar-collapse .sidebar-menu .user-profile > a img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 100%;
}

.sidebar-collapse .user-profile .profile-pic {
    padding: 5px 0;
}

.sidebar-collapse .user-profile .ulogo, .sidebar-collapse .user-profile .info {
    width: 0;
    visibility: hidden;
    opacity: 0;
    height: 40px;
    overflow: hidden;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    margin-left: -20px !important;
}

.sidebar-collapse .user-profile .profile-info, .sidebar-collapse .user-profile .profile-setting {
    display: none !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.sidebar .user-profile .ulogo a {
    background-color: transparent;
}

.sidebar .user-profile .btn-group a {
    color: #172b4c;
    background-color: transparent;
}

.sidebar-collapse.sidebar-mini .user-profile {
    overflow: hidden;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.sidebar-collapse .sidebar-menu > li.user-profile:hover > a, .sidebar-collapse .sidebar-menu > li.user-profile:active > a, .sidebar-collapse .sidebar-menu > li.user-profile.active > a {
    background-color: #172b4c !important;
    color: #ffffff;
}

    .sidebar-collapse .sidebar-menu > li.user-profile:hover > a .email-id, .sidebar-collapse .sidebar-menu > li.user-profile:active > a .email-id, .sidebar-collapse .sidebar-menu > li.user-profile.active > a .email-id {
        color: #cccccc;
    }

.sidebar-collapse .sidebar-menu > li.user-profile.menu-open > a {
    background-color: #172b4c !important;
    color: #ffffff;
}

    .sidebar-collapse .sidebar-menu > li.user-profile.menu-open > a .email-id {
        color: #cccccc;
    }

.sidebar-collapse .sidebar-menu > li.user-profile > a {
    display: block;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li.user-profile > a {
    padding: 10px;
}

.sidebar-menu .user-profile > .treeview-menu > li > a {
    color: #ffffff !important;
    opacity: 1;
    background-color: transparent;
    padding: 8px 5px 8px 30px;
}

/* Sidebar Form */
.sidebar-form {
    float: left;
    margin: 20px 10px 10px;
    overflow: hidden;
    text-overflow: clip;
}

    .sidebar-form input:focus {
        border-color: transparent;
    }

/* Multinav */
@media (min-width: 768px) {
    .fixed .multinav {
        position: fixed;
        width: 17rem;
        padding-bottom: 0;
        height: calc(100% - 80px);
    }

    .sidebar-collapse .multinav {
        width: 60px;
    }

    .sidebar-collapse .ps {
        overflow: visible !important;
    }

    .sidebar-collapse .sidebar-menu > li > a {
        padding: 5px 12px;
    }

    .sidebar-collapse .sidebar-menu > li.menu-open > a, .sidebar-collapse .sidebar-menu > li.active > a {
        background-color: transparent !important;
    }

    .sidebar-collapse .ps__rail-x {
        display: none;
    }

    .multinav .ps__rail-x {
        display: none !important;
    }

    .sidebar-collapse .sidebar-menu .treeview-menu > .treeview {
        position: relative;
    }

        .sidebar-collapse .sidebar-menu .treeview-menu > .treeview .treeview-menu {
            padding: 10px 0px;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            width: 17rem;
            top: 0;
            display: none !important;
        }

        .sidebar-collapse .sidebar-menu .treeview-menu > .treeview:hover > .treeview-menu {
            display: block !important;
            position: absolute;
            left: 17rem;
        }

    .sidebar-collapse .ps--active-x > .ps__rail-x, .sidebar-collapse .ps--active-y > .ps__rail-y {
        z-index: -1;
        opacity: 0.1;
    }
}

@media (max-width: 767px) {
    .fixed .multinav {
        position: fixed;
        width: 17rem;
        padding-bottom: 0;
        height: calc(100% - 145px);
        margin-top: 15px;
    }
}

.sidebar-footer {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    transition: .2s ease-out;
    width: 17rem;
    border-top: 1px solid rgba(23, 43, 76, 0);
}

    .sidebar-footer a {
        padding: 12px;
        width: 33.333337%;
        float: left;
        text-align: center;
        font-size: 18px;
    }

.layout-boxed .sidebar-footer {
    position: absolute;
}

/* Left Side and Right Side */
.left-side {
    position: relative;
    min-height: 100%;
}

.right-side {
    margin-left: 0;
    min-height: 100%;
}

@media (min-width: 768px) {
    .sidebar-mini.sidebar-collapse .right-side {
        margin-left: 80px;
        z-index: 840;
    }
}

@media (max-width: 991px) {
    .main-sidebar {
        padding-top: 95px;
    }
}

@media (max-width: 767px) {
    .main-sidebar {
        margin-top: 145px;
        padding-top: 0px;
        -webkit-transform: translate(-17rem, 0);
        -ms-transform: translate(-17rem, 0);
        -o-transform: translate(-17rem, 0);
        transform: translate(-17rem, 0);
    }

    .sidebar-open .main-sidebar {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@media (min-width: 768px) {
    .sidebar-collapse .main-sidebar {
        -webkit-transform: translate(-17rem, 0);
        -ms-transform: translate(-17rem, 0);
        -o-transform: translate(-17rem, 0);
        transform: translate(-17rem, 0);
    }

    .sidebar-collapse .sidebar-footer {
        width: 60px;
    }

        .sidebar-collapse .sidebar-footer a {
            width: 100%;
        }
}

/* Box Structure */
.box {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    border-radius: 5px;
    padding: 0px;
    -webkit-transition: .5s;
    transition: .5s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.05);
}

    .box.collapsed-box .box-body {
        display: none;
    }

    .box.collapsed-box .box-footer {
        display: none;
    }

.box-header {
    display: block;
    padding: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(72, 94, 144, 0.16);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .box-header.without-border {
        border-bottom: none;
    }

    .box-header.with-border {
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .box-header .box-title {
        display: inline-block;
        margin: 0;
        font-weight: 400;
    }

    .box-header > .box-tools {
        position: absolute;
        right: 1.5rem;
        top: 1.5rem;
    }

    .box-header > .box-controls {
        position: absolute;
        right: 1.5rem;
        top: 1.5rem;
    }

.box-body {
    padding: 1.5rem;
}

.box-footer {
    /*border-top: 1px solid rgba(0, 0, 0, 0.07);*/
    padding: 1.5rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .box-footer > *:last-child {
        margin-bottom: 0;
    }

/* Form Controls */
.form-control, .form-select {
    border-radius: 5px;
    box-shadow: none;
    height: auto;
}

    .form-control:focus, .form-select:focus {
        box-shadow: none;
    }

    .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
        opacity: 1;
    }

    .form-control:-moz-placeholder, .form-select:-moz-placeholder {
        opacity: 1;
    }

    .form-control::-moz-placeholder, .form-select::-moz-placeholder {
        opacity: 1;
    }

    .form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder {
        opacity: 1;
    }

    .form-control:not(select), .form-select:not(select) {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

textarea.form-control {
    border-radius: 5px;
}

.input-group-addon, .input-group-btn {
    white-space: nowrap;
    vertical-align: middle;
}

.input-group .input-group-addon {
    border-radius: 5px 0px 0px 5px;
}

.input-group-addon {
    font-weight: 300;
    padding: .425rem .75rem;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.15rem;
}

/* Tables */
.table > tbody > tr > td, .table > tbody > tr > th {
    padding: 0.8rem;
    vertical-align: middle;
}

.table > tfoot > tr > td, .table > tfoot > tr > th {
    padding: 0.8rem;
    vertical-align: middle;
}

.table > thead > tr > td, .table > thead > tr > th {
    padding: 0.8rem;
    vertical-align: middle;
}

.table tr td .progress {
    margin-top: 5px;
}

.table.no-border {
    border: 0;
}

    .table.no-border td, .table.no-border th {
        border: 0;
    }

.table-bordered {
    border: 1px solid #d1d3e0;
}

    .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th {
        border: 1px solid #d1d3e0 !important;
    }

    .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
        border: 1px solid #d1d3e0 !important;
        border-bottom-width: 2px;
    }

    .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th {
        border: 1px solid #d1d3e0 !important;
    }

.table-separated {
    border-collapse: separate;
    border-spacing: 0 8px;
}

    .table-separated thead th {
        border-bottom: none;
    }

    .table-separated tbody tr {
        -webkit-transition: .5s;
        transition: .5s;
    }

        .table-separated tbody tr > *:first-child {
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        .table-separated tbody tr > *:last-child {
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }

        .table-separated tbody tr th, .table-separated tbody tr td {
            border-top: none;
        }

/* ============================================
   LOGIN PAGE FORM STYLES
   ============================================ */
.login-form .form-group {
    position: relative;
}

    .login-form .form-group .form-label {
        color: #005499;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    /* Input group styling */
    .login-form .form-group .input-group {
        position: relative;
    }

        /* Icon positioning - custom for icon placement */
        .login-form .form-group .input-group i.bi {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 1.4rem;
            z-index: 99;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        /* Add padding to form-control to make room for icon */
        .login-form .form-group .input-group .form-control {
            padding-left: 3rem;
            padding-right: 1rem;
            padding-top: 1rem;
            padding-bottom: 1rem;
            border: 1.5px solid #cbd5e1;
            border-radius: 0px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background-color: #ffffff;
            width: 100%;
        }

            .login-form .form-group .input-group .form-control::placeholder {
                color: #9ca3af;
                font-weight: 400;
            }

            .login-form .form-group .input-group .form-control:focus {
                border-color: #005499;
                box-shadow: 0 0 0 3px rgba(0, 84, 153, 0.1);
                outline: none;
            }

                .login-form .form-group .input-group .form-control:focus ~ i.bi,
                .login-form .form-group .input-group:focus-within i.bi {
                    color: #005499;
                }

/* ============================================
   MEDIA LIST STYLES
   ============================================ */
/*---media---*/
.box .media,
.box .box-body .media,
.box .box-header .media,
.box .box-footer .media,
.card .media,
.card .card-body .media,
.card .card-header .media,
.card .card-footer .media {
    box-shadow: none;
}

[class*=col-] > .media {
    border-radius: 5px;
}

.media {
    padding: 1rem;
    -webkit-transition: background-color .2s linear;
    transition: background-color .2s linear;
}

    .media > * {
        margin: 0rem 1rem;
    }

    .media .nav-link:hover, .media .nav-link:focus {
        background-color: transparent;
    }

    .media a:not(.btn):not(.avatar) {
        color: #172b4c;
    }

    .media.flex-column > * {
        margin: 0;
    }

    .media.flex-column > div {
        width: 100%;
    }

    .media.active {
        background-color: #f3f6f9;
    }

    .media.bordered {
        border: 1px solid #f3f6f9;
    }

    .media.items-center {
        -webkit-box-align: center;
        align-items: center;
    }

    .media[data-provide~="checkable"], .media[data-provide~="selectable"] {
        cursor: pointer;
    }

    .media .media {
        margin-top: 1.25rem;
    }

    .media .lead {
        line-height: 1.875rem;
    }

    .media .title {
        -webkit-box-flex: 1;
        flex: 1 1 0%;
    }

    .media .avatar {
        flex-shrink: 0;
    }

    .media .align-center {
        /*-ms-grid-row-align: center;*/
        align-self: center;
    }

    .media .media-hover-show {
        opacity: 0;
        -webkit-transition: .3s;
        transition: .3s;
    }

    .media .dropdown .dropdown-toggle {
        opacity: .7;
    }

    .media .dropdown:hover .dropdown-toggle {
        opacity: 1;
    }

    .media .dropdown.open .dropdown-toggle {
        opacity: 1;
    }

    .media:hover .media-hover-show {
        opacity: 1;
    }

    .media:hover .media-block-actions {
        opacity: 1;
    }

    .media:hover .media-action {
        opacity: 1;
    }

    .media .custom-control {
        margin-right: 0;
    }

    .media .nav {
        flex-wrap: nowrap;
        margin-left: -8px;
        margin-right: -8px;
    }

    .media .nav-link {
        line-height: 24px;
        font-size: 90%;
        padding: 0 8px;
    }

    .media.media-xs {
        padding: 10px 6px;
    }

    .media.media-sm {
        padding: 12px 8px;
    }

    .media.media-lg {
        padding-top: 20px 16px;
    }

    .media.media-xl {
        padding-top: 24px 20px;
    }

    .media.media-xxl {
        padding-top: 32px 24px;
    }

.media-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.media-center {
    -webkit-box-align: center;
    align-items: center;
}

.media-block-actions {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 1rem;
    -webkit-transition: .5s;
    transition: .5s;
}

.media-collapsible {
    flex-wrap: wrap;
}

    .media-collapsible .collapse {
        -webkit-box-flex: 1;
        flex-grow: 1;
        flex-shrink: 0;
        min-width: 100%;
    }

.collapse-arrow::before {
    content: "\e64b";
    font-family: themify;
    display: inline-block;
    -webkit-transition: .4s;
    transition: .4s;
}

.collapse-arrow :not(.collapsed)::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.media-body {
    min-width: 0;
}

    .media-body > * {
        margin-bottom: 0;
    }

    .media-body .media > *:first-child {
        margin-left: 0;
    }

    .media-body .media > *:last-child {
        margin-right: 0;
    }

.media-left {
    padding-right: 0;
}

.media-right-out {
    padding-left: 1.25rem;
}

    .media-right-out a {
        color: #172b4c;
        font-size: 1.286rem;
        opacity: 0.8;
    }

        .media-right-out a + a {
            margin-left: 0.5rem;
        }

.media-action {
    opacity: 0;
    color: #172b4c;
}

.media-action-visible .media-action {
    opacity: 1;
}

.media-inverse {
    color: #ffffff;
}

    .media-inverse h1, .media-inverse h2, .media-inverse h3, .media-inverse h4, .media-inverse h5, .media-inverse h6 {
        color: #ffffff;
    }

    .media-inverse .small, .media-inverse small, .media-inverse time, .media-inverse .nav-link {
        color: rgba(255, 255, 255, 0.7);
    }

        .media-inverse .nav-link:hover {
            color: #ffffff;
        }

.media-new {
    background-color: #f3f6f9;
}

.media-list-hover .media-new:hover {
    background-color: #f3f6f9 !important;
}

.media-single, .media-center-v {
    -webkit-box-align: center;
    align-items: center;
}

.media-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.media-chat {
    padding-right: 64px;
    margin-bottom: 0;
}

    .media-chat.media-chat-reverse {
        padding-right: 12px;
        padding-left: 64px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }

        .media-chat.media-chat-reverse .media-body p {
            float: right;
            clear: right;
            color: #ffffff;
        }

    .media-chat .media-body {
        display: table;
    }

        .media-chat .media-body p {
            position: relative;
            padding: 6px 8px;
            margin: 4px 0;
            background-color: #f3f6f9;
            border-radius: 3px;
        }

            .media-chat .media-body p.inverse {
                color: #ffffff;
            }

            .media-chat .media-body p.meta {
                background-color: transparent !important;
                padding: 0;
                opacity: .8;
            }

                .media-chat .media-body p.meta time {
                    font-weight: 300;
                }

.media-meta-day {
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 0;
    color: #172b4c;
    opacity: .8;
    font-weight: 300;
}

    .media-meta-day:before, .media-meta-day:after {
        content: '';
        -webkit-box-flex: 1;
        flex: 1 1 0%;
        border-top: 1px solid #f3f6f9;
    }

    .media-meta-day::before {
        margin-right: 16px;
    }

    .media-meta-day::after {
        margin-left: 16px;
    }

@media (max-width: 767px) {
    .media-doc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

        .media-doc > * {
            margin-left: 0;
            margin-right: 0;
        }

        .media-doc .media-body {
            margin: 30px 0;
        }
}

.media-list > .media:not(.media-list-header):not(.media-list-footer), .media-list .media-list-body > .media {
    margin-bottom: 0;
}

.media-list .media .sortable-dot {
    margin: 0;
    margin-left: -5px;
    opacity: 0;
    border-radius: 2px;
    -webkit-transition: .5s;
    transition: .5s;
}

.media-list .media:hover .sortable-dot {
    opacity: .6;
}

.media-list [data-provide~="selectable"] .media:not(.media-list-header):not(.media-list-footer) {
    cursor: pointer;
}

.media-listul {
    padding-left: 0;
}

.media-list-hover > .media:not(.media-list-header):not(.media-list-footer):hover, .media-list-hover .media-list-body > .media:hover {
    background-color: #ebedf3;
}

    .media-list-hover > .media:not(.media-list-header):not(.media-list-footer):hover a:not(.btn):not(.avatar), .media-list-hover .media-list-body > .media:hover a:not(.btn):not(.avatar) {
        color: #172b4c;
    }

    .media-list-hover > .media:not(.media-list-header):not(.media-list-footer):hover .divider-dash, .media-list-hover .media-list-body > .media:hover .divider-dash {
        color: #172b4c;
    }

.media-list-divided > .media:not(.media-list-header):not(.media-list-footer), .media-list-divided .media-list-body > .media {
    border-bottom: 1px solid rgba(96, 138, 207, 0.07);
}

    .media-list-divided > .media:not(.media-list-header):not(.media-list-footer):last-child, .media-list-divided .media-list-body > .media:last-child {
        border-bottom: none;
    }

.media-list-bordered {
    border: 1px solid #f3f6f9;
}

.media-list-striped .media:not(.media-list-header):not(.media-list-footer):nth-child(even) {
    background-color: #f3f6f9;
}

.media-list-xs .media {
    padding: 10px 16px;
}

.media-list-sm .media {
    padding: 12px 16px;
}

.media-list-lg .media {
    padding: 20px 16px;
}

.media-list-xl .media {
    padding: 24px 20px;
}

.media-list-xxl .media {
    padding: 32px 24px;
}

.media-list-header {
    border-bottom: 1px solid #f3f6f9;
    background-color: #afc3d7;
}

.media-list-footer {
    border-top: 1px solid #f3f6f9;
    background-color: #afc3d7;
}

.media-grid {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
}

    .media-grid::after {
        content: '';
        -webkit-box-flex: 1;
        flex: auto;
    }

    .media-grid.row {
        margin-left: -15px;
        margin-right: -15px;
    }

        .media-grid.row .media {
            margin-bottom: 15px;
        }

    .media-grid > .media {
        margin-right: 15px;
        margin-bottom: 15px;
        width: 200px;
    }

.media-grid-bordered .media {
    border: 1px solid #afc3d7;
}

.media-grid-hover .media:hover {
    background-color: #f3f6f9;
}

/* ================================
   App Common Modal (2026 skin)
   Scope: #appCommonModal.app-common-modal
   ================================ */

#appCommonModal.app-common-modal .modal-dialog {
    max-width: 980px;
}

#appCommonModal.app-common-modal .modal-content {
    border: 0;
    /*border-radius: 18px;*/
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
}

#appCommonModal.app-common-modal .modal-header {
    border: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0E518C 0%, #0B3B66 100%);
    color: #fff;
}

#appCommonModal.app-common-modal .modal-title {
    margin: 0;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 18px;
    line-height: 1.2;
}

#appCommonModal.app-common-modal .modal-subtitle {
    margin-top: 4px;
    font-size: 12px;
    opacity: .9;
}

#appCommonModal.app-common-modal .btn-close {
    filter: invert(1);
    opacity: .9;
}

#appCommonModal.app-common-modal .modal-body {
    background: #f8fafc;
    padding: 20px;
}

#appCommonModal.app-common-modal .modal-footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding: 14px 20px;
}

    #appCommonModal.app-common-modal .modal-footer .btn {
        border-radius: 12px;
        padding: 10px 16px;
        font-weight: 700;
    }

        #appCommonModal.app-common-modal .modal-footer .btn.btn-secondary {
            background: #f3f4f6;
            border-color: rgba(0, 0, 0, .08);
            color: #111827;
        }

            #appCommonModal.app-common-modal .modal-footer .btn.btn-secondary:hover {
                background: #e9ecef;
            }

#appCommonModal.app-common-modal .app-modal-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    padding: 16px;
}

#appCommonModal.app-common-modal .app-modal-hint {
    font-size: 12px;
    color: #6b7280;
}

#appCommonModal .modal-dialog.modal-sm {
    max-width: 480px !important;
}

/* ============================================
   RAVVE STYLES START
   ============================================ */
/*Image zoom on mouse over  */
.need-img-zoom {
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

    .need-img-zoom:hover {
        transform: scale(4);
        position: relative;
        z-index: 9999;
        box-shadow: 0 0 8px rgba(0,0,0,0.35);
    }

.left-menu-business-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 18px 2px 12px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    line-height: 1.35;
}

.left-menu-business-card-business-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #202020;
    margin-bottom: 3px;
}

.left-menu-business-card-user-label {
    color: #005499;
    font-size: 13px;
    margin-top: 3px;
    font-weight: 500;
}

.buy-button {
    font-size: 13px;
    font-weight: 600;
    color: #28a745;
}

    .buy-button:hover {
        color: #ffffff !important;
    }

.sell-button {
    font-size: 13px;
    font-weight: 600;
    color: #ff5722;
}

    .sell-button:hover {
        color: #ffffff !important;
    }
/* Make the DataTables wrapper scroll horizontally inside Bootstrap 5 .table-responsive */
.table-responsive .dt-container {
    width: 100%;
    overflow-x: auto;
}

    /* Keep the table behaving nicely inside the wrapper */
    .table-responsive .dt-container .table {
        margin-bottom: 0;
        white-space: nowrap; /* causes horizontal scroll instead of wrapping */
    }

.reports_dtToolbar .dt-buttons {
    flex-wrap: wrap;
    gap: .5rem;
}

.reports_dtToolbar .dt-button.btn {
    color: #fff !important;
}

.reports_tableHead th {
    white-space: nowrap;
}

.reports_emptyRow {
    height: 120px;
}

.reports_trackLink {
    color: #0d6efd;
    text-decoration: none;
}

    .reports_trackLink:hover {
        text-decoration: underline;
    }

.Hide-DateString-Grid {
    display: none;
}
/* MVC validation → Bootstrap invalid look */
.input-validation-error {
    border: 1px solid red !important;
    border-color: #dc3545 !important;
}
    .input-validation-error:focus {
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25);
    }

input.input-validation-error,
select.input-validation-error,
textarea.input-validation-error {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='6' fill='%23dc3545'/%3e%3cpath d='M5.8 3.6h.4c.2 0 .3.1.3.3l-.1 3.2c0 .2-.1.3-.3.3h-.3c-.2 0-.3-.1-.3-.3l-.1-3.2c0-.2.1-.3.3-.3zm.2 5.1c-.4 0-.7-.3-.7-.7s.3-.7.7-.7.7.3.7.7-.3.7-.7.7z' fill='white'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 1rem 1rem;
}

    /* Focus state */
    input.input-validation-error:focus,
    select.input-validation-error:focus,
    textarea.input-validation-error:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
    }

/* MVC validation → Bootstrap invalid look */
.SubTable {
    background-color: darkgray !important;
    height: 40px;
    color: black !important;
    text-align: center;
}
.user-admin .table thead th {
    border-color: var(--border-light) !important;
    background: transparent !important;
    font-weight: 600;
}
.message-textarea {
    min-height: 140px !important; /* approx 5 rows */
}
/* ============================================
   RAVVE STYLES END
   ============================================ */
