/* Admin Area Styles for Bhutan Taxi Association - Updated for Yellow/Golden Theme */

/* Variables */
:root {
    --primary-color: #ffcc00;
    --secondary-color: #222222;
    --accent-color: #f7b500;
    --text-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --dark-gray: #666666;
    --border-color: #e1e1e1;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--gray-color);
    min-height: 100vh;
}

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

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

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: #2c2c2c !important;
    color: var(--light-color);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #444;
    text-align: center;
    background-color: #2c2c2c !important;
}

.sidebar-header img {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.sidebar-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover {
    background-color: rgba(255, 204, 0, 0.1) !important;
    border-left-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.sidebar-menu li a.active,
.sidebar-menu li a[class*="active"] {
    background-color: #ffcc00 !important;
    color: #222222 !important;
    border-left-color: #f7b500 !important;
    font-weight: 600 !important;
}

/* Force yellow theme - override any blue/purple */
.sidebar-menu li a:not(.active):hover {
    background-color: rgba(255, 204, 0, 0.1) !important;
    color: #ffcc00 !important;
    border-left-color: #ffcc00 !important;
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Submenu styles */
.sidebar-menu .has-submenu > a {
    position: relative;
}

.submenu-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.has-submenu.open .submenu-icon {
    transform: translateY(-50%) rotate(180deg);
}

.submenu-list {
    display: none;
    background-color: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.submenu-list li {
    border-bottom: none;
}

.submenu-list li a {
    padding: 12px 20px 12px 50px;
    font-size: 14px;
    border-left: none;
}

.submenu-list li a:hover {
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--primary-color);
}

.submenu-list li a.active {
    background-color: rgba(255, 204, 0, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

/* Content Area */
.content {
    flex: 1;
    margin-left: 250px;
    background-color: var(--gray-color);
    min-height: 100vh;
}

.header {
    background: var(--light-color);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 14px;
}

.user-info strong {
    color: var(--secondary-color);
}

/* Login Page Styles */
.auth-container {
    max-width: 400px;
    margin: 80px auto;
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-gray);
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.auth-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.auth-form button {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form button:hover {
    background-color: var(--accent-color);
}

.error-message {
    color: var(--danger-color);
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 4px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--info-color);
    text-decoration: underline;
}

.auth-links a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .sidebar {
        width: 280px;
        position: fixed;
        left: -280px;
        transition: left 0.3s ease;
        z-index: 1001;
        height: 100vh;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .content {
        margin-left: 0;
        width: 100%;
    }
    
    /* Mobile Header */
    .header {
        padding: 15px 20px;
        position: relative;
    }
    
    .header h1 {
        font-size: 1.4rem;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1002;
        background: var(--primary-color);
        color: var(--secondary-color);
        border: none;
        border-radius: 6px;
        padding: 10px 12px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        transition: var(--transition);
    }
    
    .mobile-menu-toggle:hover {
        background: var(--accent-color);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle.active {
        background: var(--danger-color);
    }
    
    /* Mobile Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    /* Content adjustments */
    .content-main {
        padding: 80px 15px 20px 15px;
        margin-top: 0;
    }
    
    /* Page Header Mobile */
    .page-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    /* Grid System Mobile */
    .row {
        margin: 0 -10px;
        flex-direction: column;
    }
    
    .col-md-4, .col-md-6, .col-md-12 {
        padding: 0 10px;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    /* Cards Mobile */
    .card {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .card-header {
        padding: 15px 20px;
        text-align: center;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    /* Membership Plan Cards Mobile */
    .membership-plan-card {
        padding: 20px;
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .membership-plan-card.premium {
        transform: none;
    }
    
    .membership-plan-card:hover {
        transform: none;
    }
    
    .price {
        font-size: 2.2em;
        margin: 15px 0;
    }
    
    .benefits {
        margin: 15px 0;
    }
    
    .benefits li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .special-feature {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Forms Mobile */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .form-control {
        padding: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        border-width: 2px;
    }
    
    select.form-control {
        padding-right: 45px;
        background-size: 20px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 10px;
        min-height: 48px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-sm {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        width: auto;
        display: inline-flex;
    }
    
    .btn i {
        margin-right: 8px;
        font-size: 1.1em;
    }
    
    /* Tables Mobile */
    .table-responsive {
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .table {
        font-size: 0.85rem;
        min-width: 600px; /* Ensure horizontal scroll */
    }
    
    .table th,
    .table td {
        padding: 12px 8px;
        white-space: nowrap;
    }
    
    .table th {
        font-size: 0.75rem;
        position: sticky;
        top: 0;
        background: #f8f9fa;
        z-index: 10;
    }
    
    /* Mobile Table Alternative - Stacked Cards */
    .mobile-table-cards {
        display: none;
    }
    
    .mobile-table-card {
        background: var(--light-color);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: 1px solid var(--border-color);
    }
    
    .mobile-table-card .card-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-table-card .card-row:last-child {
        border-bottom: none;
    }
    
    .mobile-table-card .card-label {
        font-weight: 600;
        color: var(--dark-gray);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-table-card .card-value {
        text-align: right;
        flex: 1;
        margin-left: 15px;
    }
    
    /* Badges Mobile */
    .badge {
        padding: 8px 12px;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    /* Alerts Mobile */
    .alert {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    /* User Info Mobile */
    .user-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .user-info img {
        width: 35px;
        height: 35px;
    }
    
    .user-info p {
        font-size: 12px;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb {
        padding: 10px 15px;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 5px;
    }
    
    /* Auth Container Mobile */
    .auth-container {
        margin: 20px 15px;
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-form button {
        padding: 15px;
        font-size: 1.1rem;
        min-height: 50px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .mobile-menu-toggle {
        top: 15px;
        left: 15px;
        padding: 8px 10px;
        font-size: 16px;
    }
    
    .content-main {
        padding: 70px 10px 15px 10px;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .membership-plan-card {
        padding: 15px;
    }
    
    .price {
        font-size: 1.8em;
    }
    
    .form-control {
        padding: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    /* Show stacked cards instead of table on very small screens */
    .table-responsive {
        display: none;
    }
    
    .mobile-table-cards {
        display: block;
    }
}

/* Landscape Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .sidebar {
        width: 220px;
    }
    
    .content {
        margin-left: 220px;
    }
    
    .content-main {
        padding: 25px;
    }
    
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .membership-plan-card {
        padding: 22px;
    }
}

/* FORCE YELLOW THEME - OVERRIDE ALL BLUE/PURPLE */
.sidebar-menu li a,
.sidebar a,
.dashboard-container .sidebar a {
    color: #ffffff !important;
}

.sidebar-menu li a:hover,
.sidebar a:hover,
.dashboard-container .sidebar a:hover {
    color: #ffcc00 !important;
    background-color: rgba(255, 204, 0, 0.1) !important;
    border-left-color: #ffcc00 !important;
}

.sidebar-menu li a.active,
.sidebar a.active,
.dashboard-container .sidebar a.active,
.sidebar-menu li a[class*="active"],
.sidebar a[class*="active"],
.dashboard-container .sidebar a[class*="active"] {
    background-color: #ffcc00 !important;
    color: #222222 !important;
    border-left-color: #f7b500 !important;
    font-weight: 600 !important;
}

/* Override any Bootstrap or external CSS */
.sidebar .nav-link.active,
.sidebar .nav-item.active .nav-link,
.sidebar .active {
    background-color: #ffcc00 !important;
    color: #222222 !important;
    border-color: #f7b500 !important;
}

/* Main Content Area */
.content-main {
    padding: 30px;
    min-height: calc(100vh - 80px);
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.page-header p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin: 0;
}

/* Cards */
.card {
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--secondary-color);
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-control:hover {
    border-color: var(--accent-color);
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-md-12 {
    padding: 0 15px;
    flex: 1;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(255, 204, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 204, 0, 0.3);
    color: var(--secondary-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-info {
    background-color: var(--info-color);
    color: var(--light-color);
}

.btn-info:hover {
    background-color: #2980b9;
    color: var(--light-color);
}

.btn-success {
    background-color: var(--success-color);
    color: var(--light-color);
}

.btn-success:hover {
    background-color: #27ae60;
    color: var(--light-color);
}

.btn-warning {
    background-color: var(--warning-color);
    color: var(--light-color);
}

.btn-warning:hover {
    background-color: #e67e22;
    color: var(--light-color);
}

.btn i {
    margin-right: 6px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
    background-color: var(--light-color);
}

.table th,
.table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table tbody tr:hover {
    background-color: rgba(255, 204, 0, 0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,0.02);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-standard {
    background-color: #6c757d;
    color: white;
}

.badge-premium {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-warning {
    background-color: var(--warning-color);
    color: white;
}

.badge-secondary {
    background-color: #6c757d;
    color: white;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* Membership Plan Cards */
.membership-plan-card {
    border: 3px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    transition: var(--transition);
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.membership-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.membership-plan-card.standard {
    border-color: #6c757d;
}

.membership-plan-card.premium {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    transform: scale(1.02);
}

.membership-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.membership-plan-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--success-color);
    margin: 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.benefits li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.benefits li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.special-feature {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid var(--warning-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #856404;
    font-weight: 600;
}

.special-feature i {
    margin-right: 8px;
    color: var(--warning-color);
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    color: var(--dark-gray);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 10px;
    color: var(--dark-gray);
}

.breadcrumb-item a {
    color: var(--info-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--dark-gray);
}

.text-warning {
    color: var(--warning-color);
}

/* Spacing Utilities */
.py-4 {
    padding: 2rem 0;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-main {
        padding: 20px 15px;
    }
    
    .row {
        margin: 0 -10px;
    }
    
    .col-md-4, .col-md-6 {
        padding: 0 10px;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .membership-plan-card {
        padding: 20px;
    }
    
    .price {
        font-size: 2em;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 