/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/metropolis-2');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Global Input Hover and Focus Effects */
input:hover {
    border-color: #87CEEB !important;
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.2) !important;
}

input:focus {
    outline: none !important;
    border-color: #87CEEB !important;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3) !important;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #87CEEB;
}

/* Common Card Styling */
.auth-wrapper .auth-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.15);
    /* #00000026 */
    text-align: center;
    width: 100%;
}

/* Typography & Logo */
.auth-wrapper .auth-card .logo {
    color: #87CEEB;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.auth-wrapper .auth-card h2.title {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-wrapper .auth-card p.subtitle {
    color: #666666;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Form Inputs Nested Styling */
.auth-wrapper .auth-card .custom-input-group {
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    background-color: #F6F6F6;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 16px;
    position: relative;
}

form {
    text-align: left;
}

.auth-wrapper .auth-card .custom-input-group input,
.auth-wrapper .auth-card .custom-input-group select {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.auth-wrapper .auth-card .custom-input-group input:focus,
.auth-wrapper .auth-card .custom-input-group select:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

.auth-wrapper .auth-card .custom-input-group:hover {
    border-color: #87CEEB;
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.2);
}

/* Phone Input Specifics */
.auth-wrapper .auth-card .custom-input-group .phone-prefix {
    width: 70px;
    border-right: 1px solid #DDDDDD;
    padding: 12px 8px;
    color: #555;
    background-color: transparent;
}

/* Buttons */
.auth-wrapper .auth-card .btn-auth {
    background-color: #87CEEB;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    margin: 20px auto;
    display: block;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.auth-wrapper .auth-card .btn-auth:hover {
    background-color: #75b8d6;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
}

/* Links */
.auth-wrapper .auth-card .text-link {
    color: #15A5E8;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.auth-wrapper .auth-card .text-link:hover {
    text-decoration: underline;
}

.auth-wrapper .auth-card .footer-text {
    font-size: 14px;
    color: #36454F;
    margin-top: 20px;
}

/* Verification Code Boxes */
.auth-wrapper .auth-card .verification-group {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 30px;
}

.auth-wrapper .auth-card .verification-group input {
    width: 100%;
    aspect-ratio: 1;
    text-align: center;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    background-color: #F6F6F6;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.auth-wrapper .auth-card .verification-group input:focus {
    outline: none;
    border-color: #87CEEB;
}

/* Checkbox specific */
.auth-wrapper .auth-card .terms-check input {
    position: relative;
    margin-right: 4px;
    margin-bottom: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    background-color: #F5F5F5;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    vertical-align: middle;
}

.auth-wrapper .auth-card .terms-check input:checked {
    background-color: #87CEEB;
    border-color: #87CEEB;
}

.auth-wrapper .auth-card .terms-check input:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.auth-wrapper .auth-card .terms-check {
    text-align: left;
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
    padding-top: 4px;
}

.auth-wrapper .auth-card .terms-check label {
    font-size: 16px;
}

/* Main Layout Wrapper */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar */
.dashboard-container .sidebar {
    width: 260px;
    background-color: #FFFFFF;
    box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: width 0.3s ease;
}

.dashboard-container .sidebar .logo-area {
    padding: 30px 20px;
    text-align: center;
    color: #87CEEB;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}

.dashboard-container .sidebar .nav-menu {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.dashboard-container .sidebar .nav-menu li {
    margin-bottom: 1rem;
}

.dashboard-container .sidebar .nav-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: rgb(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #F5F5F5;
}

.dashboard-container .sidebar .nav-menu a i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dashboard-container .sidebar .nav-menu a:hover {
    background-color: #F6F6F6;
}

.dashboard-container .sidebar .nav-menu li.active a {
    background-color: #87CEEB;
    color: #FFFFFF;
}

/* Main Content Area */
.dashboard-container .main-content {
    flex-grow: 1;
    margin-left: 260px;
    /* Offset for fixed sidebar */
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    transition: margin-left 0.3s ease;
}

.dashboard-container.sidebar-collapsed .main-content {
    margin-left: 70px;
}

/* Top Navbar */
.dashboard-container .top-header {
    background-color: #87CEEB;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.dashboard-container .top-header .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-container .top-header .header-left h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.dashboard-container .top-header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-container .search-bar {
    background-color: #F6F6F64D;
    border-radius: 8px;
    border: 1px solid #F6F6F680;
    padding: 10px 16px;
    display: flex;
    align-items: center;
}

.dashboard-container .search-bar svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.dashboard-container .search-bar input {
    border: none;
    background: transparent;
    color: #FFF;
    outline: none;
    padding-left: 8px;
    font-size: 14px;
}

.dashboard-container .search-bar input:hover,
.dashboard-container .search-bar input:focus {
    border: none !important;
    box-shadow: none !important;
}

.dashboard-container .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.dashboard-container .search-bar:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.dashboard-container .search-bar:focus-within {
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.dashboard-container .mobile-search-input-wrapper:focus-within {
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

/* Mobile Search Toggle Button */
.mobile-search-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-search-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-search-toggle svg {
    width: 22px;
    height: 22px;
}

/* Mobile Search Dropdown */
.mobile-search-dropdown {
    width: 280px;
    padding: 0;
    margin-top: 8px !important;
    border: none;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
}

.mobile-search-dropdown .dropdown-item {
    padding: 12px 16px;
    border-radius: 12px;
}

.mobile-search-dropdown .dropdown-item:hover,
.mobile-search-dropdown .dropdown-item:focus {
    background-color: transparent;
}

.mobile-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    padding: 10px 14px;
}

.mobile-search-input-wrapper svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    outline: none;
}

.mobile-search-input-wrapper input::placeholder {
    color: #888;
}

.mobile-search-input-wrapper:hover {
    border-color: #87CEEB;
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.2);
}

.mobile-search-input-wrapper:focus-within {
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

/* Mobile Profile Dropdown */
.mobile-profile-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-profile-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-profile-toggle img {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    object-fit: cover;
}

.mobile-profile-dropdown {
    width: 200px;
    padding: 0;
    margin-top: 8px !important;
    border: none;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
}

.mobile-profile-dropdown .dropdown-item {
    padding: 16px;
    border-radius: 12px;
}

.mobile-profile-dropdown .dropdown-item:hover,
.mobile-profile-dropdown .dropdown-item:focus {
    background-color: transparent;
}

.mobile-profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-profile-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.mobile-profile-name:hover,
.dashboard-container .user-profile .logout-text:hover {
    text-decoration: underline;
}

.mobile-logout-btn {
    font-size: 14px;
    color: #EC2425;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-logout-btn:hover {
    color: #c41e3a;
    text-decoration: underline;
}

.dashboard-container .user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-container .user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    object-fit: cover;
}

.dashboard-container .user-profile .user-info {
    display: flex;
    flex-direction: column;
}

.dashboard-container .user-profile .user-name {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
}

.dashboard-container .user-profile .user-name:hover {
    text-decoration: underline;
}

.dashboard-container .user-profile .logout-text {
    font-size: 11px;
    color: #EC2425;
    text-decoration: none;
    font-weight: 600;
}

/* Dashboard Body Content */
.dashboard-container .content-wrapper {
    padding: 40px 30px;
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #F5F5F5;
}

/* Reusable Card Style */
.dashboard-container .dash-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    height: 100%;
    box-shadow: 0px 12px 32px 0px #0000001A;
}

/* Stats Cards */
.dashboard-container .stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0px 10px 12px 0px #00000040;
    border: 2px solid #87CEEB
}

.dashboard-container .stat-card .icon-box {
    width: 60px;
    height: 60px;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #87CEEB;
    font-size: 20px;
    backdrop-filter: blur(44px);
    box-shadow: 0px 10px 21px 0px #87CEEB66;

}

.dashboard-container .stat-card .stat-info h3 {
    color: #87CEEB;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.dashboard-container .stat-card .stat-info p {
    color: #87CEEB;
    font-size: 14px;
    margin: 6px 0 0 0;
}

/* Card Titles */
.dashboard-container .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-container .card-title i {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Alerts Box */
.dashboard-container .alert-item {
    background-color: #EC242533;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    box-shadow: 0px 12px 32px 0px #0000001A;
}

.dashboard-container .alert-item i {
    color: #e74c3c;
    font-size: 20px;
}

.dashboard-container .alert-item .alert-text h4 {
    display: block;
    color: #000;
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;
}

.dashboard-container .alert-item .alert-text span {
    color: #000000;
    font-size: 13px;
}

/* ============================================
   COMMON TABLE STYLES - Base + Modifiers
   ============================================ */

/* Base Table Styles */
.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Metropolis', sans-serif;
}

.dash-table th {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    padding: 16px;
    border-bottom: 1px solid #000000;
    text-align: left;
    background-color: #F5F5F5;
    font-family: 'Metropolis', sans-serif;
    min-width: 106px;
}

.dash-table td {
    font-size: 16px;
    color: #545454;
    padding: 16px;
    border-bottom: 1px solid #DDDDDD;
    vertical-align: middle;
    font-family: 'Metropolis', sans-serif;
    font-weight: 500;
}

.dash-table tbody tr:hover {
    background-color: #F8FBFC;
}

/* Compact Table Modifier - Use for product-table */
.dash-table.table-sm th,
.dash-table.table-sm td {
    padding: 14px 16px;
    font-size: 14px;
}

/* Common Action Icons */
.action-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-icons svg,
.action-icons i {
    font-size: 14px;
    color: #87CEEB;
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-icons svg:hover,
.action-icons i:hover {
    color: #5FB4D9;
}

.action-icons .icon-delete,
.action-icons i.fa-trash,
.action-icons .fa-trash:hover {
    color: #EC2425;
}

.action-icons .icon-refresh {
    color: #15A5E8;
}

.action-icons .icon-more {
    color: #292D32;
}

/* Common Status Badge Base */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

/* Status Badge Variants */
.status-completed {
    background-color: #B9F2CE;
    color: #22B51A;
}

.status-failed {
    background-color: #FFCCCC;
    color: #EC2425;
}

.status-pending {
    background-color: #FFF4CC;
    color: #F5A623;
}

.status-running {
    background-color: #BEE5F5;
    color: #1F1AB5;
}

.status-matched {
    background-color: #B9F2CE;
    color: #22B51A;
}

.status-unmatched {
    background-color: #FFCCCC;
    color: #EC2425;
}

/* Dashboard-specific status badge sizing */
.dashboard-container .status-badge {
    padding: 6px 8px;
    font-size: 15px;
}

/* Sidebar Toggle Styles */
.sidebar-toggle {
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Collapsed Sidebar State */
.dashboard-container.sidebar-collapsed .sidebar {
    width: 70px;
}

.dashboard-container.sidebar-collapsed .sidebar .logo-area {
    font-size: 14px;
    padding: 20px 10px;
}

.dashboard-container.sidebar-collapsed .sidebar .nav-menu a {
    justify-content: center;
    padding: 12px;
}

.dashboard-container.sidebar-collapsed .sidebar .nav-menu a i {
    margin-right: 0;
    font-size: 18px;
}

.dashboard-container.sidebar-collapsed .sidebar .nav-menu a span {
    display: none;
}

.dashboard-container.sidebar-collapsed .main-content {
    margin-left: 70px;
}

/* ============================================
   UPLOAD FILES PAGE STYLES - NESTED UNDER PARENT SECTIONS
   ============================================ */

/* Upload Section */
.upload-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.upload-section .upload-area {
    width: 100%;
    max-width: 42%;
    border: 2px dashed #00000080;
    border-radius: 12px;
    padding: 5rem 4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-section .upload-area:hover {
    border-color: #87CEEB;
    background-color: #F8FBFC;
}

.upload-section .upload-area.drag-over {
    border-color: #87CEEB;
    background-color: #E8F4F8;
    border-style: solid;
}

.upload-section .upload-icon {
    margin-bottom: 16px;
}

.upload-section .upload-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.upload-section .upload-subtitle {
    font-size: 15px;
    color: #000000;
    margin: 0;
}

/* Validation Progress Section */
.validation-progress-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.validation-progress-section .section-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 26px;
}

.validation-progress-section .progress-card {
    padding: 20px;
    box-shadow: 0px 12px 32px 0px #0000001A;
}

.validation-progress-section .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.validation-progress-section .progress-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.validation-progress-section .file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.validation-progress-section .file-details {
    display: flex;
    flex-direction: column;
}

.validation-progress-section .progress-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.validation-progress-section .progress-subtitle {
    font-size: 13px;
    color: #000000;
}

.validation-progress-section .progress-percent {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.validation-progress-section .progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
}

.validation-progress-section .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #87CEEB 0%, #5FB4D9 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Validation Results Section */
.validation-results-section {
    animation: fadeIn 0.3s ease;
}

.validation-results-section .results-card {
    margin-bottom: 30px;
    box-shadow: 0px 12px 32px 0px #0000001A;
}

.validation-results-section .results-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.validation-results-section .results-subtitle {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
}

.validation-results-section .stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.validation-results-section .stat-box {
    flex: 1;
    min-width: 140px;
    background-color: #FFFFFF;
    border: 2px solid #87CEEB;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0px 10px 12px 0px #00000040;
}

.validation-results-section .stat-label {
    display: block;
    font-size: 14px;
    color: #000000;
    margin-bottom: 4px;
    font-weight: 500;
}

.validation-results-section .stat-value {
    display: block;
    font-size: 26px;
    font-weight: 600;
    color: #000000;
}

.validation-results-section .stat-value.valid {
    color: #22B51A;
}

.validation-results-section .stat-value.invalid {
    color: #EC2425;
}

.validation-results-section .issues-card {
    box-shadow: 0px 12px 32px 0px #0000001A;
}

.validation-results-section .issues-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.validation-results-section .issues-icon {
    color: #EC2425;
    font-size: 18px;
    margin-bottom: 2px;
}

.validation-results-section .issues-count {
    font-size: 14px;
    font-weight: 500;
    color: #EC2425;
}

.validation-results-section .issues-table {
    margin-top: 12px;
}

.validation-results-section .issues-table th {
    background-color: #F5F5F5;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
}

.validation-results-section .issues-table td {
    font-size: 16px;
    padding: 12px 16px;
    color: #545454;
}

.validation-results-section .issues-table tbody tr:hover {
    background-color: #F8FBFC;
}

.validation-results-section .issue-badge {
    display: inline-block;
    background-color: #FFCCCC;
    color: #EC2425;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.validation-results-section .action-bar {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.validation-results-section .btn-proceed {
    background-color: #87CEEB;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 6px 12px 0px #00000040;
}

.validation-results-section .btn-proceed:hover {
    background-color: #5FB4D9;
    box-shadow: 0px 6px 12px rgba(135, 206, 235, 0.5);
}

.validation-results-section .btn-proceed i {
    font-size: 12px;
}

/* ============================================
   UPLOADS HISTORY PAGE STYLES
   ============================================ */

.history-section {
    animation: fadeIn 0.3s ease;
}

.history-section .section-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 26px;
}

/* File Cell with Icon */
.history-section .file-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-section .file-cell svg {
    flex-shrink: 0;
}

.history-section .file-cell span {
    font-size: 16px;
    color: #545454;
    font-weight: 500;
}

/* Source Badge */
.source-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    background-color: #F5F5F5;
    color: #9D9D9D;
}

/* Rows Count */
.rows-count {
    font-weight: 700;
    width: 100%;
    text-align: center;
    display: block;
}

/* ============================================
   LOGOUT MODAL STYLES
   ============================================ */

.logout-modal .modal-dialog {
    max-width: 336px;
}

.logout-modal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: -20px 0px 34px 0px #00000059;
}

.logout-modal .modal-body {
    padding: 30px 24px;
}

.logout-modal .logout-message {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.5;
}

.logout-modal .logout-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.logout-modal .logout-buttons .btn {
    min-width: 46%;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-modal .logout-buttons .btn-no {
    background-color: #4A4A4A;
    color: #FFFFFF;
}

.logout-modal .logout-buttons .btn-no:hover {
    background-color: #333333;
}

.logout-modal .logout-buttons .btn-yes {
    background-color: #87CEEB;
    color: #FFFFFF;
}

.logout-modal .logout-buttons .btn-yes:hover {
    background-color: #5FB4D9;
}

/* Modal backdrop with blur effect */
.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(8px);
}

/* Override Bootstrap modal styles for centered look */
.logout-modal.modal.show .modal-dialog {
    transform: translate(0, 0);
}

/* ============================================
   SEARCH MODAL STYLES
   ============================================ */

.search-modal .modal-dialog {
    max-width: 400px;
    margin: 0 auto;
}

.search-modal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-modal .modal-body {
    padding: 0;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
}

.search-modal-header .modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.search-modal-header .btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.search-modal-header .btn-close:hover {
    opacity: 1;
}

.search-modal-content {
    padding: 20px 24px 24px;
}

/* Search modal animation */
.search-modal .modal-dialog {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.search-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.mobile-search-input-wrapper input:hover,
.mobile-search-input-wrapper input:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Scheduler Page Specific Styles */
.scheduler-section {
    animation: fadeIn 0.3s ease;
}

.scheduler-section .section-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 26px;
}

/* Scheduler-specific status badge colors */
.scheduler-section .status-pending {
    background-color: #F0F095;
    color: #A4A419;
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.product-section {
    animation: fadeIn 0.3s ease;
}

.product-section .section-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

/* Product Search Bar */
.product-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 12px 32px 0px #0000001A;
}

.product-search-bar .search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.product-search-bar .search-input-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.product-search-bar .product-search-input {
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 10px 14px 10px 44px;
    font-size: 16px;
    color: #545454;
    outline: none;
    transition: all 0.3s ease;
}

.product-search-bar .product-search-input::placeholder {
    color: #888888;
}

.product-search-bar .btn-search {
    background-color: #87CEEB;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-search-bar .btn-search:hover {
    background-color: #5FB4D9;
}

/* Product Status Badges */
.product-section .status-matched {
    background-color: #B9F2CE;
    color: #22B51A;
}

.product-section .status-unmatched {
    background-color: #FFCCCC;
    color: #EC2425;
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */

.profile-section {
    animation: fadeIn 0.3s ease;
}

.profile-section .profile-card {
    box-shadow: 0px 12px 32px 0px #0000001A;
    padding: 30px 40px;
}

/* Bootstrap Tabs Custom Styling */
.profile-tabs {
    border-bottom: 1px solid #87CEEB;
    justify-content: center;
    margin-bottom: 30px;
}

.profile-tabs .nav-link {
    border: none;
    background-color: transparent;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    min-width: 170px;
}

.profile-tabs .nav-link:hover {
    background-color: #F5F5F5;
    color: #000000;
}

.profile-tabs .nav-link.active {
    background-color: #87CEEB;
    color: #FFFFFF;
    border-radius: 8px 8px 0 0;
}

/* Profile Form Wrapper */
.profile-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

/* Profile Picture */
.profile-picture-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.profile-picture {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-picture .change-picture-icon {
    position: absolute;
    bottom: -20%;
    width: 40px;
    height: 40px;
    background-color: #87CEEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #FFFFFF66;
    box-shadow: 0px 8px 18.67px 0px #00000040;
}

.change-picture-text {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    margin-top: 1rem;
}

/* Profile Form */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-form .form-control {
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 12px 40px 12px 14px;
    font-size: 16px;
    color: #545454;
    outline: none;
}

.profile-form .form-control::placeholder {
    color: #999999;
    font-size: 12px;
}

.profile-form .form-control:focus {
    border-color: #87CEEB;
    background-color: #FFFFFF;
}

.profile-form .input-icon,
.icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Phone Input Group */
.phone-group {
    display: flex;
    gap: 8px;
}

.phone-prefix-wrapper {
    flex-shrink: 0;
}

.phone-prefix {
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 14px;
    color: #545454;
    outline: none;
    cursor: pointer;
}

.phone-input {
    flex: 1;
}

/* Save Button */
.btn-save {
    background-color: #87CEEB;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 16px auto 0;
    display: block;
    box-shadow: 0px 4px 8px rgba(135, 206, 235, 0.4);
}

.btn-save:hover {
    background-color: #5FB4D9;
    box-shadow: 0px 6px 12px rgba(135, 206, 235, 0.5);
}

/* Password Form */
.password-form {
    padding-top: 10px;
}

/* Settings Page Specific Styles */
.settings-section {
    animation: fadeIn 0.3s ease;
}

.settings-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0px 12px 32px 0px #0000001A;
}

.settings-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

/* Connected Status Banner */
.settings-card .status-banner {
    background-color: #24EC2433;
    border-radius: 8px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.settings-card .status-banner .status-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-card .status-banner .status-icon {
    color: #22B51A;
    font-size: 16px;
}

.settings-card .status-banner .status-text {
    color: #22B51A;
    font-size: 16px;
}

.settings-card .status-banner .btn-reconnect {
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    color: #545454;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-card .status-banner .btn-reconnect:hover {
    background-color: #E8E8E8;
}

/* Form Fields */
.settings-card .form-field {
    margin-bottom: 0;
}

.settings-card .form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.settings-card .form-field .form-control {
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    color: #545454;
}

.settings-card .form-field .form-control:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

/* Toggle Switch */
.settings-card .toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 16px;
}

.settings-card .toggle-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.settings-card .toggle-info p {
    font-size: 13px;
    color: #000000;
    margin: 0;
}

.settings-card .custom-toggle .toggle-label svg {
    display: none;
    cursor: pointer;
}

.settings-card .custom-toggle input:checked+.toggle-label .toggle-on,
.settings-card .custom-toggle input:not(:checked)+.toggle-label .toggle-off {
    display: block;
}

/* Custom Dropdown */
.settings-card .custom-dropdown {
    position: relative;
}

.settings-card .custom-dropdown .dropdown-toggle {
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: #666;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settings-card .custom-dropdown .dropdown-toggle:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

.settings-card .custom-dropdown .dropdown-toggle::after {
    margin-left: 8px;
}

.settings-card .custom-dropdown .dropdown-menu {
    width: 100%;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.settings-card .custom-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.settings-card .custom-dropdown .dropdown-item:hover {
    background-color: #F0F8FF;
    color: #87CEEB;
}

.settings-card .custom-dropdown .dropdown-item.active {
    background-color: transparent;
    color: #87CEEB;
}

/* Timezone Dropdown with Search */
.settings-card .timezone-dropdown .dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.settings-card .timezone-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   INTL TEL INPUT STYLES FOR SIGNUP PAGE
   ============================================ */

/* Phone input group container */
.auth-wrapper .auth-card .custom-input-group.phone-input-group {
    padding: 0;
    overflow: visible;
}

/* intl-tel-input wrapper */
.auth-wrapper .auth-card .iti {
    width: 100%;
    display: flex;
    align-items: center;
}

/* Flag container */
.auth-wrapper .auth-card .iti__flag-container {
    position: relative;
    padding: 0;
}

/* Selected flag styling */
.auth-wrapper .auth-card .iti__selected-flag {
    background-color: transparent;
    border-right: 1px solid #DDDDDD;
    padding: 0 12px;
    height: 100%;
}

.auth-wrapper .auth-card .iti__selected-flag:hover,
.auth-wrapper .auth-card .iti__selected-flag:focus {
    background-color: #F0F0F0;
}

/* Country dropdown */
.auth-wrapper .auth-card .iti__country-list {
    border-radius: 8px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #DDDDDD;
    max-height: 200px;
    margin-top: 4px;
}

.auth-wrapper .auth-card .iti__country {
    padding: 8px 12px;
    font-size: 14px;
}

.auth-wrapper .auth-card .iti__country.iti__highlight {
    background-color: #F0F8FF;
}

.auth-wrapper .auth-card .iti__country-name {
    color: #333;
}

.auth-wrapper .auth-card .iti__dial-code {
    color: #666;
}

/* Phone input field */
.auth-wrapper .auth-card .iti input[type="tel"] {
    padding-right: 42px;
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

/* Separate dial code styling */
.auth-wrapper .auth-card .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}

.auth-wrapper .auth-card .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px;
    color: #333;
    margin-left: 8px;
}

/* Search box in dropdown */
.auth-wrapper .auth-card .iti__search-input {
    padding: 8px 12px;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    margin: 8px;
    width: calc(100% - 16px);
    font-size: 14px;
    width: 96% !important;
}

.auth-wrapper .auth-card .iti__search-input:focus {
    border-color: #87CEEB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.3);
}

/* Remove the old phone prefix styles */
.auth-wrapper .auth-card .custom-input-group .phone-prefix {
    display: none;
}

.iti .iti__selected-dial-code {
    font-size: 14px;
}

.profile-section .profile-form .iti {
    width: 100%;
}

/* Hide search input in intl-tel-input dropdown */
.iti .iti__search-input,
.iti__dropdown .iti__search-input,
.iti__country-list .iti__search-input {
    display: none !important;
}

/* ============================================
   PROFILE POPUP STYLES FOR MOBILE
   ============================================ */

.profile-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.profile-popup.show {
    display: block;
}

.profile-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.profile-popup-content {
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 12px 32px 0px #0000001A;
    min-width: 200px;
    max-width: 280px;
    overflow: hidden;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.profile-popup.show .profile-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.profile-popup-header {
    background-color: #87CEEB;
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
}

.profile-popup-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    margin-bottom: 8px;
}

.profile-popup-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.profile-popup-body {
    padding: 0;
}

.profile-popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #F5F5F5;
}

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

.profile-popup-item:hover {
    background-color: #F8FBFC;
}

.profile-popup-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #87CEEB;
}

.profile-popup-item.logout-text {
    color: #EC2425;
}

.profile-popup-item.logout-text i {
    color: #EC2425;
}

.logo-area img {
    width: 100%;
    height: auto;
    max-width: 90px;
}


@media (max-width: 1400px) {
    .dashboard-container .dash-card {
        padding: 16px;
    }

    .dashboard-container .stat-card .icon-box {
        width: 50px;
        height: 50px;
    }

    .dashboard-container .stat-card .stat-info h3 {
        font-size: 30px;
    }

    .dashboard-container .content-wrapper {
        padding: 20px;
    }

    .dashboard-container .top-header {
        padding: 15px 20px;
    }

    .dashboard-container .main-content {
        margin-left: 232px;
    }

    .dashboard-container .sidebar {
        width: 232px;
    }

    .dashboard-container .sidebar .nav-menu a {
        font-size: 14px;
    }

    .dashboard-container .sidebar .nav-menu a {
        padding: 12px 14px;
    }

    .dashboard-container .alert-item i {
        font-size: 16px;
    }

    .dashboard-container .alert-item {
        gap: 8px;
    }

    .dashboard-container .alert-item .alert-text h4 {
        font-size: 13px;
    }

    .dashboard-container .alert-item .alert-text span {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .dashboard-container .dash-card {
        padding: 14px;
    }

    .dashboard-container .stat-card .icon-box {
        width: 40px;
        height: 40px;
    }

    .dashboard-container .stat-card .stat-info h3 {
        font-size: 26px;
    }

    .dashboard-container .content-wrapper {
        padding: 16px;
    }

    .dashboard-container .top-header {
        padding: 12px 18px;
    }

    .dashboard-container .main-content {
        margin-left: 210px;
    }

    .dashboard-container .sidebar {
        width: 210px;
    }

    .dashboard-container .sidebar .nav-menu a {
        font-size: 14px;
    }

    .dashboard-container .sidebar .nav-menu a {
        padding: 12px 14px;
    }

    .dashboard-container .alert-item i {
        font-size: 16px;
    }

    .dashboard-container .alert-item {
        gap: 8px;
    }

    .dashboard-container .alert-item .alert-text h4 {
        font-size: 13px;
    }

    .dashboard-container .alert-item .alert-text span {
        font-size: 12px;
    }

    .dashboard-container .stat-card {
        gap: 10px;
    }

    .dashboard-container .sidebar .nav-menu a i {
        margin-right: 6px;
        font-size: 15px;
    }

    .dashboard-container .sidebar .nav-menu a {
        font-size: 13px;
    }

    .dashboard-container .card-title {
        font-size: 17px;
    }

    .dashboard-container .stat-card .stat-info p {
        font-size: 13px;
    }

    .dash-table th,
    .dash-table td,
    .dashboard-container .status-badge {
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .dashboard-container .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dashboard-container .sidebar.show {
        transform: translateX(0);
    }

    .dashboard-container .main-content {
        margin-left: 0;
    }

    .dashboard-container.sidebar-collapsed .sidebar {
        width: 260px;
        transform: translateX(-100%);
    }

    .dashboard-container.sidebar-collapsed .main-content {
        margin-left: 0;
    }

    /* Overlay for mobile */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .dashboard-container .top-header .header-left {
        gap: 4px
    }

    .dashboard-container .top-header {
        padding: 12px 14px;
    }

    .dashboard-container .top-header .header-left h1 {
        font-size: 22px;
    }

    .dashboard-container .search-bar {
        padding: 10px;
    }

    .dashboard-container .search-bar svg {
        margin-right: 0;
    }

    .dashboard-container .top-header .header-right {
        gap: 12px;
    }

    .dashboard-container .user-profile .user-name {
        font-size: 14px;
    }

    .profile-popup {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .dashboard-container .user-profile .user-name {
        font-size: 13px;
    }

    .dashboard-container .user-profile {
        gap: 8px;
    }
}