/* ============================================
   ADMIN PAGES - MODERN & SWEET DESIGN
   ============================================ */

/* PAGE HEADER STYLING */
.page-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid #e9ecef !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 1rem 0 !important;
    transition: all 0.3s ease;
}

/* PAGE HEADER TITLE */
.page-header-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

/* PAGE HEADER ICON */
.page-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.page-header-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.page-header-icon i {
    color: white !important;
}

/* ADD BUTTON */
.btn-light {
    background-color: white;
    border: 1px solid #e0e5ec;
    color: #0061f2;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-light:hover {
    background: linear-gradient(135deg, #0061f2 0%, #0051d4 100%);
    border-color: #0061f2;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 97, 242, 0.15);
}

.btn-light:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-light.text-primary {
    color: #0061f2;
}

.btn-light.text-primary:hover {
    color: white;
}

/* ============================================
   BUTTON STYLES - Consistent Design
   ============================================ */

/* Base Button */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary Button - Purple Gradient */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Outline Primary */
.btn-outline-primary {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

/* Success Button - Green */
.btn-success {
    background: linear-gradient(135deg, #00ac69 0%, #00d084 100%);
    border: none;
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #009a5e 0%, #00b870 100%);
    box-shadow: 0 4px 12px rgba(0, 172, 105, 0.4);
    color: white;
}

/* Outline Success */
.btn-outline-success {
    background: transparent;
    border: 2px solid #00ac69;
    color: #00ac69;
}

.btn-outline-success:hover {
    background: linear-gradient(135deg, #00ac69 0%, #00d084 100%);
    border-color: transparent;
    color: white;
}

/* Danger Button - Red */
.btn-danger {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%);
    border: none;
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #d43d2f 0%, #a82212 100%);
    box-shadow: 0 4px 12px rgba(231, 74, 59, 0.4);
    color: white;
}

/* Outline Danger */
.btn-outline-danger {
    background: transparent;
    border: 2px solid #e74a3b;
    color: #e74a3b;
}

.btn-outline-danger:hover {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%);
    border-color: transparent;
    color: white;
}

/* Warning Button - Orange */
.btn-warning {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
    border: none;
    color: #1a1a2e;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #e5b230 0%, #c99008 100%);
    box-shadow: 0 4px 12px rgba(246, 194, 62, 0.4);
    color: #1a1a2e;
}

/* Outline Warning */
.btn-outline-warning {
    background: transparent;
    border: 2px solid #f6c23e;
    color: #dda20a;
}

.btn-outline-warning:hover {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
    border-color: transparent;
    color: #1a1a2e;
}

/* Info Button - Cyan */
.btn-info {
    background: linear-gradient(135deg, #36b9cc 0%, #258391 100%);
    border: none;
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #2fa5b7 0%, #207382 100%);
    box-shadow: 0 4px 12px rgba(54, 185, 204, 0.4);
    color: white;
}

/* Outline Info */
.btn-outline-info {
    background: transparent;
    border: 2px solid #36b9cc;
    color: #36b9cc;
}

.btn-outline-info:hover {
    background: linear-gradient(135deg, #36b9cc 0%, #258391 100%);
    border-color: transparent;
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background: #858796;
    border: none;
    color: white;
}

.btn-secondary:hover {
    background: #717384;
    box-shadow: 0 4px 12px rgba(133, 135, 150, 0.4);
    color: white;
}

/* Small Button */
.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Icon Button */
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
}

.btn-icon.btn-sm {
    width: 32px;
    height: 32px;
}

/* ============================================
   SUMMARY / STAT CARDS
   ============================================ */

/* Border Start Cards */
.border-start-lg {
    border-left-width: 4px !important;
    border-left-style: solid !important;
}

.border-start-primary { border-left-color: #667eea !important; }
.border-start-success { border-left-color: #00ac69 !important; }
.border-start-warning { border-left-color: #f6c23e !important; }
.border-start-danger { border-left-color: #e74a3b !important; }
.border-start-info { border-left-color: #36b9cc !important; }
.border-start-secondary { border-left-color: #858796 !important; }

/* Summary Card Styling */
.card.border-start-lg {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.card.border-start-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card.border-start-lg .card-body {
    padding: 1.25rem;
}

.card.border-start-lg .h3,
.card.border-start-lg .h2 {
    font-weight: 700;
    margin-bottom: 0;
}

.card.border-start-lg .small.fw-bold {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stat Icon in Card */
.card.border-start-lg i[style*="font-size: 2rem"],
.card.border-start-lg i[style*="font-size: 2.5rem"] {
    opacity: 0.8;
    transition: all 0.2s ease;
}

.card.border-start-lg:hover i[style*="font-size: 2rem"],
.card.border-start-lg:hover i[style*="font-size: 2.5rem"] {
    opacity: 1;
    transform: scale(1.1);
}

/* GENERIC TABLE STYLING */
.generic-table-wrapper {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e5ec;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
}


/* TABLE SEARCH STYLING */
.search-input,
.generic-table-wrapper .form-control {
    border: 2px solid #e0e5ec;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.search-input:focus,
.generic-table-wrapper .form-control:focus {
    border-color: #0061f2;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 97, 242, 0.1);
    outline: none;
}

.search-input::placeholder {
    color: #a7aeb8;
}

/* TABLE HEADERS */
.generic-table-wrapper th {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
    color: #212832;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e0e5ec;
    padding: 1rem 1.25rem !important;
    transition: all 0.3s ease;
}

.generic-table-wrapper th:hover {
    background: linear-gradient(135deg, #f0f2f5 0%, #e0e5ec 100%);
}

/* TABLE ROWS */
.generic-table-wrapper tbody tr {
    border-bottom: 1px solid #e0e5ec;
    transition: all 0.2s ease;
}

.generic-table-wrapper tbody tr:hover {
    background-color: #f8f9fa;
    box-shadow: inset 0 0 8px rgba(0, 97, 242, 0.05);
}

.generic-table-wrapper tbody tr:last-child {
    border-bottom: none;
}

/* TABLE CELLS */
.generic-table-wrapper td {
    padding: 1rem 1.25rem !important;
    vertical-align: middle;
    color: #212832;
    font-size: 0.95rem;
}

/* BADGE STYLING */
.badge {
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge:hover {
    transform: scale(1.05);
}

.badge.bg-primary {
    background: linear-gradient(135deg, #0061f2 0%, #0051d4 100%) !important;
    color: white;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #6900c7 0%, #5500a1 100%) !important;
    color: white;
}

.badge.bg-info {
    background: linear-gradient(135deg, #00cfd5 0%, #00a9af 100%) !important;
    color: white;
}

.badge.bg-success {
    background: linear-gradient(135deg, #00ac69 0%, #008552 100%) !important;
    color: white;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f4a100 0%, #cc8200 100%) !important;
    color: white;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #e81500 0%, #cc1200 100%) !important;
    color: white;
}

/* PAGINATION STYLING */
.pagination .page-link {
    border: 2px solid #e0e5ec;
    color: #212832;
    background-color: white;
    border-radius: 6px;
    margin: 0 2px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: #0061f2;
    border-color: #0061f2;
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0061f2 0%, #0051d4 100%);
    border-color: #0061f2;
    box-shadow: 0 4px 12px rgba(0, 97, 242, 0.3);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #e0e5ec;
    color: #a7aeb8;
}

/* SORT INDICATORS */
.generic-table-wrapper .sort-icon {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.generic-table-wrapper th:hover .sort-icon {
    opacity: 1;
}

/* SEARCH SECTION */
.generic-table-wrapper .search-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f7fa 100%);
    border-bottom: 1px solid #e0e5ec;
}

/* CONTAINER STYLING */
.container-fluid {
    padding: 0;
}

.container-fluid > .px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* HEADER CONTENT */
.page-header-content .row {
    gap: 1rem;
}

.page-header-content .col-auto {
    margin-bottom: 0 !important;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
    .page-header-title {
        font-size: 1.5rem;
    }

    .page-header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .btn-light {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1rem 0 !important;
    }

    .page-header-title {
        font-size: 1.25rem;
    }

    .page-header-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .generic-table-wrapper th {
        font-size: 0.8rem;
        padding: 0.75rem !important;
    }

    .generic-table-wrapper td {
        padding: 0.75rem !important;
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 0.75rem 0 !important;
    }

    .page-header-title {
        font-size: 1rem;
    }

    .page-header-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .container-fluid > .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .generic-table-wrapper {
        border-radius: 8px;
    }

    .generic-table-wrapper th {
        padding: 0.5rem !important;
    }

    .generic-table-wrapper td {
        padding: 0.5rem !important;
    }

    .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* SMOOTH TRANSITIONS */
* {
    transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ANIMATIONS */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.page-header {
    animation: slideInDown 0.4s ease;
}

.generic-table-wrapper {
    animation: fadeIn 0.5s ease;
}

/* HOVER EFFECTS */
tr {
    transition: all 0.2s ease;
}

td {
    transition: all 0.2s ease;
}

/* TEXT UTILITIES */
.fw-semibold {
    font-weight: 600;
}

.text-muted {
    color: #69707a !important;
}

.text-dark {
    color: #212832 !important;
}

/* ICON STYLING */
.bi {
    transition: all 0.3s ease;
    display: inline-block;
}

.page-header-icon .bi {
    transform-origin: center;
}

.page-header-icon:hover .bi {
    transform: rotate(-10deg) scale(1.1);
}

/* IMAGE STYLING */
img {
    border-radius: 6px;
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* FORM STYLING */
.form-control,
.form-select {
    border: 2px solid #e0e5ec;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0061f2;
    box-shadow: 0 0 0 3px rgba(0, 97, 242, 0.1);
}

/* BOX SHADOW UTILITIES */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

/* BORDER STYLING */
.border {
    border-color: #e0e5ec !important;
}

.border-top {
    border-top-color: #e0e5ec !important;
}

.border-bottom {
    border-bottom-color: #e0e5ec !important;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #0061f2;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0051d4;
}

/* ============================================
   VENUE DETAIL PAGE STYLES
   ============================================ */

.detail-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.detail-card:hover {
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

.stats-mini-card {
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e3e6f0;
    transition: all 0.3s ease;
}

.stats-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stats-mini-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a5c69;
}

.stats-mini-label {
    font-size: 0.75rem;
    color: #858796;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-bar {
    height: 8px;
    border-radius: 4px;
    background: #e9ecef;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.review-card {
    border-left: 4px solid #4e73df;
    background: #f8f9fc;
    border-radius: 0 8px 8px 0;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.review-card.pending {
    border-left-color: #f6c23e;
}

.reservation-card {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e3e6f0;
    transition: all 0.3s ease;
}

.reservation-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.reservation-card.pending {
    border-left: 4px solid #f6c23e;
}

.reservation-card.approved {
    border-left: 4px solid #1cc88a;
}

.reservation-card.cancelled {
    border-left: 4px solid #e74a3b;
}

.reservation-card.rejected {
    border-left: 4px solid #858796;
}

.venue-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e3e6f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.8rem;
    color: #858796;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #5a5c69;
}

.nav-tabs-detail .nav-link {
    border: none;
    color: #858796;
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-tabs-detail .nav-link:hover {
    color: #4e73df;
    border-bottom-color: #e3e6f0;
}

.nav-tabs-detail .nav-link.active {
    color: #4e73df;
    border-bottom-color: #4e73df;
    background: transparent;
}

.star-rating {
    color: #f6c23e;
}

.badge-status {
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Review Photos */
.review-photos {
    border-top: 1px solid #e3e6f0;
    padding-top: 0.75rem;
}

.review-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.review-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.review-photo-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.review-photo-thumbnail:hover {
    opacity: 0.9;
}

/* ============================================
   USER PAGES COMMON STYLES
   ============================================ */

/* Avatar Styles */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.avatar-admin {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%);
}

.avatar-editor {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
}

.avatar-venueowner {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
}

.avatar-customer {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

/* User Type Badges */
.user-type-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-type-admin {
    background: linear-gradient(135deg, rgba(231, 74, 59, 0.15) 0%, rgba(190, 38, 23, 0.15) 100%);
    color: #e74a3b;
}

.user-type-editor {
    background: linear-gradient(135deg, rgba(246, 194, 62, 0.15) 0%, rgba(221, 162, 10, 0.15) 100%);
    color: #dda20a;
}

.user-type-venueowner {
    background: linear-gradient(135deg, rgba(28, 200, 138, 0.15) 0%, rgba(19, 133, 92, 0.15) 100%);
    color: #1cc88a;
}

.user-type-customer {
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.15) 0%, rgba(34, 74, 190, 0.15) 100%);
    color: #4e73df;
}

/* Status Badges */
.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background: linear-gradient(135deg, rgba(28, 200, 138, 0.15) 0%, rgba(19, 133, 92, 0.15) 100%);
    color: #1cc88a;
}

.status-inactive {
    background: linear-gradient(135deg, rgba(133, 135, 150, 0.15) 0%, rgba(90, 92, 105, 0.15) 100%);
    color: #858796;
}

/* ============================================
   LOCATION PAGE STYLES
   ============================================ */

.location-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.location-type-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.location-type-country {
    background: rgba(78, 115, 223, 0.15);
    color: #4e73df;
}

.location-type-city {
    background: rgba(28, 200, 138, 0.15);
    color: #1cc88a;
}

.location-type-district {
    background: rgba(246, 194, 62, 0.15);
    color: #dda20a;
}

.location-type-neighborhood {
    background: rgba(231, 74, 59, 0.15);
    color: #e74a3b;
}

/* ============================================
   ROLE PAGE STYLES
   ============================================ */

.role-card {
    border-radius: 12px;
    border: 1px solid #e3e6f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.role-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.role-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.role-icon-admin {
    background: linear-gradient(135deg, rgba(231, 74, 59, 0.15) 0%, rgba(190, 38, 23, 0.15) 100%);
    color: #e74a3b;
}

.role-icon-default {
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.15) 0%, rgba(34, 74, 190, 0.15) 100%);
    color: #4e73df;
}

/* ============================================
   VENUES INDEX PAGE STYLES
   ============================================ */

.stats-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
}

.stats-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.stats-card-body {
    padding: 1.5rem;
}

.stats-label {
    font-size: 0.75rem;
    color: #858796;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stats-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.stats-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.quick-stats-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8f9fc;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #5a5c69;
}

/* ============================================
   COMMON TABLE STYLES
   ============================================ */

.table-action-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.table-action-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .review-photo-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .avatar-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .stats-value {
        font-size: 1.5rem;
    }
    
    .stats-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */

.bg-gradient-primary {
    background: linear-gradient(135deg, #0061f2 0%, #0048b3 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 97, 242, 0.3);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #00ac69 0%, #00d084 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 172, 105, 0.3);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #00cfd5 0%, #00e8f0 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 207, 213, 0.3);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f4a100 0%, #cc8200 100%) !important;
    box-shadow: 0 4px 15px rgba(244, 161, 0, 0.3);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%) !important;
    box-shadow: 0 4px 15px rgba(231, 74, 59, 0.3);
}

.card:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
}

/* ============================================
   FILTER CHIPS
   ============================================ */

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f8f9fa;
    color: #6c757d;
}

.filter-chip:hover {
    background: #e9ecef;
}

.filter-chip.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.filter-chip i {
    margin-right: 0.5rem;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid #e3e6f0;
    padding: 1.25rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e3e6f0;
    padding: 1rem 1.5rem;
}

/* ============================================
   TAG/CHIP STYLES
   ============================================ */

.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e9ecef;
    color: #495057;
    margin: 0.125rem;
}

.tag-chip.tag-primary {
    background: rgba(78, 115, 223, 0.15);
    color: #4e73df;
}

.tag-chip.tag-success {
    background: rgba(28, 200, 138, 0.15);
    color: #1cc88a;
}

.tag-chip.tag-warning {
    background: rgba(246, 194, 62, 0.15);
    color: #f6c23e;
}

.tag-chip.tag-danger {
    background: rgba(231, 74, 59, 0.15);
    color: #e74a3b;
}

/* ============================================
   COMMON BADGE STYLES
   ============================================ */

/* Base badge style */
.icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* Payment Methods Badge */
.payment-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 207, 213, 0.15) 0%, rgba(0, 207, 213, 0.25) 100%);
    color: #00cfd5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(0, 207, 213, 0.2);
}

/* Filter Badge */
.filter-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 97, 242, 0.15) 0%, rgba(0, 97, 242, 0.25) 100%);
    color: #0061f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(0, 97, 242, 0.2);
}

/* Tag Badge */
.tag-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.15) 0%, rgba(244, 161, 0, 0.25) 100%);
    color: #f4a100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(244, 161, 0, 0.2);
}

/* Language Badge */
.language-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(102, 126, 234, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Dietary Badge */
.dietary-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 172, 105, 0.15) 0%, rgba(0, 172, 105, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 172, 105, 0.2);
}

/* Role Badge */
.role-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(105, 0, 199, 0.15) 0%, rgba(105, 0, 199, 0.25) 100%);
    color: #6900c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(105, 0, 199, 0.2);
}

/* Venue Badge (for recommended venues) */
.venue-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.15) 0%, rgba(244, 161, 0, 0.25) 100%);
    color: #f4a100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(244, 161, 0, 0.2);
}

/* Avatar for venue owner */
.avatar-venue-owner {
    background: linear-gradient(135deg, #00ac69 0%, #00d084 100%);
    box-shadow: 0 2px 8px rgba(0, 172, 105, 0.4);
}

