/* PureHD Transaction Portal - Main Stylesheet
   Modern and professional styling while keeping PureHD branding 
*/

:root {
    /* Brand Colors - Aligned with PureHD.com */
    --primary-color: #4D64C1;      /* PureHD Blue (from site) */
    --secondary-color: #3a4f9e;    /* Darker blue for hover states */
    --header-bg-color: #4D64C1;    /* Navbar color from user input */
    --footer-bg-color: #262F3D;    /* Footer background color from PureHD.com */
    --accent-color: #e6f2ff;       /* Lighter blue accent */
    --success-color: #28a745;      
    --warning-color: #ffc107;      
    --danger-color: #dc3545;       
    --info-color: #17a2b8;         
    
    /* Neutral Colors - Refined for a cleaner look */
    --bg-color: #ffffff;           /* White background for main content area */
    --page-bg-color: #f4f6f8;      /* Slightly off-white for the overall page body (new) */
    --card-bg: #ffffff;            
    --text-color: #333333;         /* Darker gray for better readability */
    --text-muted: #6c757d;         
    --border-color: #ced4da;       /* Slightly softer border color */
    
    /* UI Elements */
    --border-radius: 6px;          /* Slightly less pronounced rounded corners */
    --border-radius-sm: 4px;       
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Softer, more modern shadow */
    --box-shadow-lg: 0 5px 15px rgba(0, 0, 0, 0.1);    
    --transition: all 0.25s ease-in-out;
}

/* Base Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--page-bg-color, #f4f6f8); /* overall page background */
    color: var(--text-color, #333333);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Layout Components */
.header {
    background-color: #ffffff; /* White header background */
    box-shadow: var(--box-shadow);
    padding: 10px 0; /* Adjusted padding */
    border-bottom: none; /* Removed bottom border, purehd.com has a subtle shadow */
    position: sticky;
    top: 0;
    z-index: 1020; /* Ensure header is above most elements */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-weight: 600;
    font-size: 1.4rem; /* Slightly adjusted */
    color: #000000; /* Black like on purehd.com */
    margin-left: 10px;
}

.header .navbar-brand img {
    max-height: 40px; /* Consistent logo height */
}

.navbar {
    padding: 0; /* Reset padding if Bootstrap adds any */
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-color); 
    font-weight: 500;
    position: relative;
    text-transform: uppercase; /* Match purehd.com style */
    font-size: 0.9rem; /* Match purehd.com style */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: transparent; /* Ensure no bg color on hover if not desired */
}

/* Remove the underline active style for a cleaner look, purehd.com uses color change */
.navbar-nav .nav-link.active::after {
    display: none; 
}

/* Utility Navigation - More subtle, aligned with purehd.com's top bar */
.nav-utility {
    background-color: #f8f9fa; /* Light gray, similar to purehd.com top bar */
    padding: 8px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
}

.nav-utility a,
.nav-utility .navbar-text,
.nav-utility .text-muted {
    color: var(--text-muted);
}

.nav-utility a:hover {
    color: var(--primary-color);
}

.user-dropdown .dropdown-toggle::after {
    display: none;
}

.user-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
}

.user-dropdown .dropdown-menu {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-lg);
    border: 1px solid var(--border-color);
    padding: 0;
    min-width: 240px;
}

.user-dropdown .dropdown-header {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.user-dropdown .dropdown-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
}

.user-dropdown .dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--text-muted);
}

.user-dropdown .dropdown-item:hover i {
    color: var(--primary-color);
}

.user-dropdown .dropdown-divider {
    margin: 0;
}

.main-content {
    flex: 1;
    padding: 20px 0; /* Reduced padding slightly */
    background-color: var(--bg-color); /* Main content area will be white */
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color, #ced4da);
    box-shadow: var(--box-shadow, 0 2px 4px rgba(0, 0, 0, 0.05));
    margin-bottom: 1.5rem; /* Consistent card spacing */
    border-radius: var(--border-radius, 6px);
    overflow: hidden; /* Important for child elements like card-header */
}

.card:hover {
    box-shadow: var(--box-shadow-lg, 0 5px 15px rgba(0, 0, 0, 0.1));
    /* transform: translateY(-2px); Optional: subtle lift effect */
}

.card-header {
    background-color: var(--accent-color, #e6f2ff);
    color: var(--primary-color, #0072CE);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color, #ced4da);
}

.card-header.bg-primary {
    background-color: #4D64C1 !important;
    color: white !important;
    border-bottom: none;
}

.card-title {
    margin-bottom: 0.5rem; /* Spacing for card titles if used directly in card-body */
    font-size: 1.1rem; /* Slightly smaller default card title */
}

.card-body {
    padding: 1.25rem;
}

/* Dashboard Components */
.welcome-section {
    background-color: #e8ecf8;
    border-radius: var(--border-radius, 6px);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #4D64C1;
}

.welcome-section h1 {
    color: #4D64C1;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.welcome-text {
    color: var(--text-muted, #6c757d);
    font-size: 1rem;
}

.balance-card {
    border-radius: var(--border-radius, 6px);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border: 1px solid var(--border-color, #ced4da);
    box-shadow: var(--box-shadow, 0 2px 4px rgba(0,0,0,0.05));
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4D64C1;
}

.due-date {
    font-weight: 500;
    color: var(--danger-color, #dc3545);
}

.stats-card {
    background: #4D64C1;
    color: white;
    border-radius: var(--border-radius, 6px);
    padding: 1.5rem;
    position: relative; /* For icon positioning */
    height: 100%;
    box-shadow: var(--box-shadow, 0 2px 4px rgba(0,0,0,0.05));
}

.stats-card .value {
    font-size: 1.8rem;
    font-weight: 700;
}

.stats-card .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stats-card i.icon-bg {
    font-size: 3rem;
    opacity: 0.15;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Table styles */
.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: #e8ecf8;
    color: #4D64C1;
    font-weight: 600;
    border-bottom: 2px solid #4D64C1;
    padding: 0.75rem 1rem;
}

.table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-top: 1px solid var(--border-color, #ced4da);
}

.table tbody tr:hover {
    background-color: var(--accent-color, #e6f2ff);
    color: var(--primary-color, #0072CE); /* Optional: change text color on hover */
}

.table .status-badge {
    padding: 0.3em 0.6em;
    border-radius: var(--border-radius-sm, 4px);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.table .status-open {
    background-color: var(--warning-color, #ffc107);
    color: #212529; /* Dark text for yellow background */
}

.table .status-paid {
    background-color: var(--success-color, #28a745);
    color: white;
}

.table .status-overdue {
    background-color: var(--danger-color, #dc3545);
    color: white;
}

.table .status-pending {
    background-color: var(--info-color, #17a2b8);
    color: white;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.25rem; /* Slightly wider buttons */
    border-radius: var(--border-radius-sm, 4px);
    transition: var(--transition, all 0.25s ease-in-out);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #4D64C1 !important;
    border-color: #4D64C1 !important;
    box-shadow: 0 4px 6px rgba(77, 100, 193, 0.2);
}

.btn-primary:hover {
    background-color: #3a4f9e !important;
    border-color: #3a4f9e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(77, 100, 193, 0.3);
}

.btn-outline-primary {
    color: #4D64C1 !important;
    border-color: #4D64C1 !important;
    border-width: 2px;
}

.btn-outline-primary:hover {
    background-color: #4D64C1 !important;
    color: white !important;
    border-color: #4D64C1 !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #4D64C1 !important;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Alert styles */
.alert {
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-bottom: 20px;
    border: none;
    display: flex;
    align-items: center;
}

.alert i {
    font-size: 1.2rem;
    margin-right: 12px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger-color);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success-color);
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid var(--info-color);
}

/* Forms */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-control {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    border-color: #4D64C1;
    box-shadow: 0 0 0 0.25rem rgba(77, 100, 193, 0.25);
}

.input-group-text {
    background-color: var(--accent-color);
    border-color: var(--border-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #262F3D; /* Dark blue/gray from purehd.com footer */
    color: #adb5bd; /* Light gray text for footer */
    padding: 40px 0;
    margin-top: auto;
    font-size: 0.9rem;
}

footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.footer-content {
    /* Will be handled by Bootstrap grid in templates */
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li a {
    color: #adb5bd;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: var(--transition);
}

.footer-links-list li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 10px;
}

.footer-contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #3e4756; /* Separator line in footer */
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* Login Page */
.login-container {
    max-width: 450px; /* Standard login form width */
    margin: 2rem auto; /* Centering with some top margin */
}

.login-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-align: center;
}

.login-header h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.login-body {
    background: white;
    padding: 30px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
}

.help-text {
    margin-top: 20px;
    padding: 12px;
    background-color: var(--accent-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive styles */
@media (max-width: 768px) {
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .balance-amount {
        font-size: 1.8rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .table-responsive {
        border: none;
    }
    
    .nav-utility {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .welcome-section {
        padding: 15px;
    }
    
    .card-header {
        padding: 12px 15px;
    }
    
    .balance-card {
        padding: 15px;
    }
    
    .dropdown-menu {
        width: 100%;
        min-width: auto;
    }
    
    .status-badge {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    
    .table thead th, 
    .table tbody td {
        padding: 8px 10px;
    }
}

/* Print styles */
@media print {
    .header, .nav-utility, footer, .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .main-content {
        padding: 0;
    }
}

/* Mobile Navigation Bar Styles */
.mobile-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0 6px;
    border-top: 1px solid #eee;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    padding: 4px 0;
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item.active {
    color: var(--primary-color);
}

/* Special styling for the payment button */
.pay-button-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #4D64C1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -15px;
    margin-bottom: 2px;
    box-shadow: 0 3px 8px rgba(0, 114, 206, 0.3);
    transition: all 0.3s ease;
}

.pay-now-btn {
    position: relative;
    padding-top: 0;
}

.pay-now-btn:active .pay-button-circle {
    transform: scale(0.92);
    box-shadow: 0 2px 5px rgba(77, 100, 193, 0.3);
}

.pay-now-btn .pay-button-circle i {
    font-size: 1.3rem;
    margin: 0;
}

.pay-now-btn span {
    margin-top: 4px;
}

/* Add padding to footer on mobile to prevent navigation bar overlap */
@media (max-width: 767.98px) {
    footer {
        padding-bottom: 80px;
    }
    
    /* Add some bottom margin to the last card to ensure it's not cut off by the navigation bar */
    .main-content .card:last-child {
        margin-bottom: 80px;
    }
}

/* New styles from the code block */
/* COMMENTED OUT - Using new navbar.css styles instead
.portal-header {
    background-color: #4D64C1;
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    position: relative;
    z-index: 1000;
}
*/

/* COMMENTED OUT - Using new navbar.css styles instead
.portal-header .logo-container img {
    max-height: 40px;
}

.portal-header .logo-container {
    display: flex;
    align-items: center;
}

.portal-header .logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-left: 0.75rem;
}

.portal-header .main-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.02em;
}

.portal-header .main-nav .nav-link:hover,
.portal-header .main-nav .nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.portal-header .main-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.portal-header .main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

.portal-header .utility-nav a,
.portal-header .utility-nav .navbar-text {
    color: #ffffff;
    font-size: 0.875rem;
}

.portal-header .utility-nav a:hover {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: underline;
}
*/

.portal-footer {
    background-color: var(--footer-bg-color); /* From purehd.com footer */
    color: #adb5bd;
    padding: 3rem 0 0;
    font-size: 0.9rem;
    margin-top: auto;
    border-top: 4px solid #4D64C1;
}

.portal-footer h5, .portal-footer h6 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.portal-footer h5:after, .portal-footer h6:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4D64C1;
}

.portal-footer .footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.portal-footer .footer-links-list li {
    margin-bottom: 0.5rem;
}

.portal-footer .footer-links-list li a {
    color: #adb5bd;
    padding: 0.25rem 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.portal-footer .footer-links-list li a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.portal-footer .footer-links-list li a:before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portal-footer .footer-links-list li a:hover:before {
    opacity: 1;
    left: -5px;
}

.portal-footer .elementor-icon-list-items {
    list-style: none;
    padding-left: 0;
}

.portal-footer .icon-list-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.portal-footer .icon-list-icon {
    margin-right: 10px;
    color: #4D64C1;
    font-size: 1.1rem;
}

.portal-footer .footer-contact-info p {
    margin-bottom: 0.75rem;
}

.portal-footer .footer-contact-info i {
    margin-right: 0.75rem;
    color: #4D64C1;
    width: 16px;
    text-align: center;
}

.portal-footer .footer-bottom {
    border-top: 1px solid #3e4756;
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    background-color: rgba(0,0,0,0.1);
}

.portal-footer .copyright-section {
    background-color: rgba(0,0,0,0.2);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portal-footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.portal-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4D64C1;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portal-footer .social-icon:hover {
    background-color: white;
    color: #4D64C1;
    transform: translateY(-3px);
}

/* Add this to ensure main content has a white background if body is light gray */
.main-content-wrapper {
    background-color: #fff; /* White background for the actual content block */
    flex-grow: 1;
}

/* Standardize section padding within main content */
.section-padding {
    padding: 2rem 0;
}

/* Footer adjustments */
footer.portal-footer {
     margin-top: auto; /* Pushes footer to bottom if content is short */
}

/* Refined card styling */
.card {
    border: 1px solid var(--border-color, #ced4da);
    box-shadow: var(--box-shadow, 0 2px 4px rgba(0, 0, 0, 0.05));
    margin-bottom: 1.5rem; /* Consistent card spacing */
    border-radius: var(--border-radius, 6px);
    overflow: hidden; /* Important for child elements like card-header */
}

.card:hover {
    box-shadow: var(--box-shadow-lg, 0 5px 15px rgba(0, 0, 0, 0.1));
    /* transform: translateY(-2px); Optional: subtle lift effect */
}

.card-header {
    background-color: var(--accent-color, #e6f2ff);
    color: var(--primary-color, #0072CE);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color, #ced4da);
}

.card-header.bg-primary {
    background-color: #4D64C1 !important;
    color: white !important;
    border-bottom: none;
}

.card-title {
    margin-bottom: 0.5rem; /* Spacing for card titles if used directly in card-body */
    font-size: 1.1rem; /* Slightly smaller default card title */
}

.card-body {
    padding: 1.25rem;
}

/* Button refinement */
.btn {
    font-weight: 500;
    padding: 0.5rem 1rem; /* Bootstrap 5 like padding */
    border-radius: var(--border-radius-sm, 4px);
    transition: var(--transition, all 0.25s ease-in-out);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Table refinement */
.table thead th {
    background-color: #e8ecf8;
    color: #4D64C1;
    font-weight: 600;
    border-bottom: 2px solid #4D64C1;
    padding: 0.75rem 1rem;
}

.table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-top: 1px solid var(--border-color, #ced4da);
}

.table-hover tbody tr:hover {
    background-color: var(--accent-color, #e6f2ff);
    color: var(--primary-color, #0072CE); /* Optional: change text color on hover */
}

.table .status-badge {
    padding: 0.3em 0.6em;
    border-radius: var(--border-radius-sm, 4px);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.table .status-open {
    background-color: var(--warning-color, #ffc107);
    color: #212529; /* Dark text for yellow background */
}

.table .status-paid {
    background-color: var(--success-color, #28a745);
    color: white;
}

.table .status-overdue {
    background-color: var(--danger-color, #dc3545);
    color: white;
}

.table .status-pending {
    background-color: var(--info-color, #17a2b8);
    color: white;
}

/* Updated Navbar Styles */
.utility-bar {
    font-size: 0.9rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-color: #3a4f9e;
}

.utility-bar .welcome-message {
    font-weight: 500;
    padding: 0.25rem 0;
    color: #ffffff;
}

.utility-bar .welcome-message i {
    opacity: 0.8;
}

.utility-bar .utility-links {
    display: flex;
    align-items: center;
}

/* COMMENTED OUT - Using new navbar.css styles instead
.utility-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.25rem 0.75rem;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.utility-link:not(:last-child):after {
    content: '|';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.utility-link:hover {
    color: white;
}

.utility-link.active {
    color: white;
    font-weight: 500;
}
*/

/* COMMENTED OUT - Using new navbar.css styles instead
.portal-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: transparent !important;
}

.portal-header .navbar-nav {
    gap: 0.5rem;
}

.portal-header .navbar-nav.ms-auto {
    margin-left: auto !important;
}

.portal-header .navbar-collapse {
    justify-content: flex-end;
}

.portal-header .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.portal-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
*/

/* COMMENTED OUT - Using new navbar.css styles instead
@media (min-width: 992px) {
    .portal-header .main-nav {
        display: flex;
        gap: 1rem;
    }
    
    .portal-header .container-fluid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

.portal-header .main-nav .nav-link {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .portal-header .navbar {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.portal-header .navbar-brand {
    color: #ffffff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.portal-header .navbar-brand:hover {
    color: #ffffff !important;
    opacity: 0.9;
}

.portal-header .navbar-brand .logo-text {
    color: #ffffff !important;
}

.utility-bar .utility-link {
    color: #ffffff !important;
    text-decoration: none;
}

.utility-bar .utility-link:hover {
    color: #ffffff !important;
    opacity: 0.8;
}

.portal-header .navbar .nav-link,
.portal-header .navbar .navbar-nav .nav-link,
.portal-header .main-nav .nav-item .nav-link {
    color: #ffffff !important;
}

.portal-header .navbar .nav-link:hover,
.portal-header .navbar .nav-link:focus,
.portal-header .navbar .nav-link.active {
    color: #ffffff !important;
    opacity: 1;
}

.utility-bar,
.utility-bar * {
    color: #ffffff !important;
}

.utility-bar .welcome-message,
.utility-bar .navbar-text,
.utility-bar .text-muted {
    color: #ffffff !important;
    opacity: 1;
}

.portal-header .cart-icon,
.portal-header .cart-icon i,
.portal-header .cart-badge {
    color: #ffffff !important;
}

.portal-header .user-dropdown .dropdown-toggle,
.portal-header .user-dropdown .dropdown-toggle i {
    color: #ffffff !important;
}
*/ 