/* ============================================
   WORLD-CLASS DESIGN SYSTEM
   ============================================ */

/* Base Typography */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Background color is set dynamically from settings */
}

/* Unified Language Switcher Styles */
.language-switcher-unified {
    position: relative !important;
    z-index: 10000 !important;
}

.language-switcher-unified .dropdown {
    position: relative !important;
    z-index: 10000 !important;
}

.language-switcher-unified .lang-dropdown-btn {
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001 !important;
}

.language-switcher-unified .lang-dropdown-btn:hover {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.2) 0%, rgba(0, 163, 221, 0.2) 100%) !important;
    border-color: rgba(0, 163, 221, 0.5) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 163, 221, 0.2);
}

.language-switcher-unified .dropdown-menu {
    z-index: 99999 !important;
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    margin-top: 5px !important;
}

.language-switcher-unified .lang-dropdown-item {
    transition: all 0.2s ease;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 100000 !important;
    position: relative !important;
    text-decoration: none !important;
}

.language-switcher-unified .lang-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%) !important;
    transform: translateX(5px);
    text-decoration: none !important;
}

.language-switcher-unified .lang-dropdown-item.active {
    font-weight: 600;
}

/* Hide Google Translate default UI */
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-combo,
#google_translate_element iframe {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Ensure top utility bar doesn't clip dropdown */
.top-utility-bar {
    overflow: visible !important;
}

/* Ensure header doesn't clip dropdown */
.world-class-header {
    overflow: visible !important;
}

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

/* Image Styling */
img {
    border: solid 2px;
    border-bottom-color: #ffe;
    border-left-color: #eed;
    border-right-color: #eed;
    border-top-color: #ccb;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Frame Effect */
.frame {
    background-color: #ddc;
    border: solid 1rem #eee;
    border-bottom-color: #fff;
    border-left-color: #eee;
    border-right-color: #eee;
    border-top-color: #ddd;
    box-shadow:
        0 0 5px 0 rgba(0, 0, 0, 0.25) inset,
        0 5px 10px 5px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 0;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.frame:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 5px 0 rgba(0, 0, 0, 0.25) inset,
        0 10px 20px 10px rgba(0, 0, 0, 0.3);
}

.frame::before {
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) inset;
    content: "";
    position: absolute;
    top: -0.5rem;
    bottom: -0.5rem;
    left: -0.5rem;
    right: -0.5rem;
    pointer-events: none;
}

.frame::after {
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    content: "";
    position: absolute;
    top: -1rem;
    bottom: -1rem;
    left: -1rem;
    right: -1rem;
    pointer-events: none;
}

/* Color System - Zanzibar Flag Colors */
.custom-blue {
    color: #00A3DD !important; /* Zanzibar Blue */
}

.bg-custom-secondary {
    background-color: #f0f0f0;
}

.bg-primary {
    background-color: #00A3DD; /* Zanzibar Blue */
}

/* Zanzibar Flag Colors */
:root {
    --zanzibar-blue: #00A3DD;
    --zanzibar-blue-light: #5AC8FA;
    --zanzibar-blue-accent: #007AFF;
    --zanzibar-black: #000000;
    --zanzibar-blue-dark: #0080b0;
    --zanzibar-blue-dark: #0056b3;
}

/* Lines and Dividers */
.line {
    height: 3px;
    background: linear-gradient(90deg, #00A3DD 0%, rgba(0, 163, 221, 0.3) 100%);
    width: 50%;
    border-radius: 2px;
}

.line2 {
    height: 3px;
    background: linear-gradient(90deg, #00A3DD 0%, rgba(0, 163, 221, 0.3) 100%);
    border-radius: 2px;
}

/* Custom Buttons */
.custom-btn {
    padding: 10px 20px;
    border: none;
    color: white;
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    width: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 163, 221, 0.3);
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 163, 221, 0.4);
    background: linear-gradient(135deg, #007AFF 0%, #00A3DD 100%);
}

.custom-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 163, 221, 0.3);
}

.custom-btn a {
    color: white;
    text-decoration: none;
}

/* Fade Border Effect */
.fade-border {
    position: relative;
    padding-bottom: 1rem;
}

.fade-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #00A3DD 0%, rgba(0, 163, 221, 0) 100%);
}

/* Document Icon Section */
.doc-icon2 {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%);
    height: 200px;
    color: #00A3DD;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 12px;
    border: 2px solid rgba(0, 163, 221, 0.2);
    transition: all 0.3s ease;
}

.doc-icon2:hover {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.15) 0%, rgba(0, 163, 221, 0.15) 100%);
    border-color: rgba(0, 163, 221, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 163, 221, 0.2);
}

@media (min-width: 576px) {
    .doc-icon2 {
        display: flex;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .doc-icon2 {
        display: none;
    }
}

/* Tab Buttons */
.tab-btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    width: 220px;
    border-radius: 8px;
    border: 2px solid #00A3DD;
    background-color: white;
    color: #00A3DD;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 163, 221, 0.3);
}

.tab-btn:hover {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 163, 221, 0.2);
}

.tab-btn:focus {
    outline: none;
}

/* Document Cards */
.doc-card {
    min-height: 90px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 163, 221, 0.2);
    color: #00A3DD;
    border-radius: 12px;
    margin: 8px 4px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 163, 221, 0.15);
    border-color: rgba(0, 163, 221, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 122, 255, 0.05) 100%);
}

.doc-card p {
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    font-weight: 500;
}

.doc-card-btn {
    border-radius: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    color: #fff !important;
    font-size: 12px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 163, 221, 0.3);
}

.doc-card-btn:hover,
.doc-card-btn:focus {
    background: linear-gradient(135deg, #007AFF 0%, #00A3DD 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 163, 221, 0.4);
    outline: none;
}

/* News Cards */
.latest-news {
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.latest-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.latest-news a {
    text-decoration: none;
    color: inherit;
}

.latest-news .full-hd-container {
    overflow: hidden;
    border-radius: 8px;
}

.latest-news img {
    transition: transform 0.5s ease;
}

.latest-news:hover img {
    transform: scale(1.1);
}

/* Event Cards */
.has-hover-bounce {
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.has-hover-bounce:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 163, 221, 0.2);
    border-color: #00A3DD;
}

.has-hover-bounce a {
    text-decoration: none;
    color: inherit;
}

/* Carousel Enhancements */
.carousel {
    border-radius: 16px;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    border: none;
    border-radius: 0;
    display: block;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-prev.active {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(0.5);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 10px;
    z-index: 15;
    margin-bottom: 0;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Carousel Caption */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    text-align: center;
    z-index: 10;
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 30px 20px 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* Profile Cards */
.cursor-pointer {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.cursor-pointer:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Custom Height */
.custom-height {
    min-height: 80px;
}

/* Text Utilities */
.text-bold {
    font-weight: 600;
}

.control-elipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

@media (max-width: 1024px) {
    .control-elipsis {
        max-width: 30ch;
    }
    .on-small {
        margin-bottom: 5rem;
    }
}

@media (min-width: 1025px) {
    .control-elipsis {
        max-width: 20ch;
    }
}

/* Footer Styling - World Class Design */
.custom-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.custom-footer * {
    position: relative;
    z-index: 2;
}

/* Smooth animations for footer content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-footer > .container > .row > div {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.custom-footer > .container > .row > div:nth-child(1) { animation-delay: 0.1s; }
.custom-footer > .container > .row > div:nth-child(2) { animation-delay: 0.2s; }
.custom-footer > .container > .row > div:nth-child(3) { animation-delay: 0.3s; }
.custom-footer > .container > .row > div:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   WORLD-CLASS HEADER DESIGN
   ============================================ */

/* Header Container */
.world-class-header {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.98) 0%, rgba(0, 163, 221, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: visible !important;
    width: 100%;
    z-index: 1000;
}

.world-class-header[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

@media (max-width: 768px) {
    .world-class-header[style*="background-image"] {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center top !important;
    }
}

/* Top Utility Bar */
.top-utility-bar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 163, 221, 0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: visible !important;
    position: relative;
    z-index: 1000;
}

/* Modern Search Form */
.search-container {
    position: relative;
}

.modern-search-form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 6px 20px rgba(0, 163, 221, 0.25);
    transform: translateY(-2px);
}

.search-icon-left {
    position: absolute;
    left: 18px;
    color: #00A3DD;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.modern-search-input {
    flex: 1;
    border: none;
    padding: 12px 50px 12px 45px;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
    color: #333;
}

.modern-search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-submit-btn {
    position: absolute;
    right: 5px;
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.search-submit-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 163, 221, 0.4);
}

/* Utility Links */
.utility-links {
    gap: 15px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00A3DD;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-link:hover {
    background: rgba(0, 163, 221, 0.1);
    color: #007AFF;
    transform: translateY(-2px);
}

.lang-dropdown-btn {
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: rgba(0, 163, 221, 0.1) !important;
    border-color: #00A3DD !important;
}

.lang-dropdown-item {
    transition: all 0.2s ease;
}

.lang-dropdown-item:hover {
    background: rgba(0, 163, 221, 0.1) !important;
    color: #00A3DD !important;
}

.lang-dropdown-item.active {
    background: rgba(0, 163, 221, 0.15) !important;
    color: #00A3DD !important;
    font-weight: 600;
}

/* Google Translate Widget Styling */
#google_translate_element {
    display: inline-block !important;
    vertical-align: middle !important;
    max-width: 160px !important;
    height: 32px !important;
    overflow: hidden !important;
}

/* Hide default Google Translate branding and styling */
#google_translate_element .goog-te-banner-frame,
#google_translate_element .goog-te-menu-frame {
    display: none !important;
}

#google_translate_element .goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

#google_translate_element .goog-te-gadget-simple {
    background-color: white !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-size: 0.8rem !important;
    color: #00A3DD !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    max-width: 150px !important;
    height: 28px !important;
    line-height: 20px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
    gap: 6px !important;
}

#google_translate_element .goog-te-gadget-simple:hover {
    border-color: #00A3DD !important;
    box-shadow: 0 2px 8px rgba(0, 163, 221, 0.2) !important;
    background: rgba(0, 163, 221, 0.05) !important;
}

#google_translate_element .goog-te-gadget-icon {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 6px !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    order: 1 !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
    color: #00A3DD !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    order: 2 !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
    color: #00A3DD !important;
    font-size: 0.8rem !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span:first-child {
    display: none !important;
}

#google_translate_element select {
    border: none !important;
    background: transparent !important;
    color: #00A3DD !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 140px !important;
    height: 20px !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    order: 3 !important;
}

/* Ensure all children of goog-te-gadget-simple are inline */
#google_translate_element .goog-te-gadget-simple > * {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* Fix any nested spans or divs */
#google_translate_element .goog-te-gadget-simple span,
#google_translate_element .goog-te-gadget-simple div {
    display: inline !important;
    vertical-align: middle !important;
}

/* Force horizontal layout for all Google Translate elements */
#google_translate_element .goog-te-gadget,
#google_translate_element .goog-te-gadget-simple,
#google_translate_element .goog-te-gadget-simple * {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    vertical-align: middle !important;
}

/* Ensure icon and text are side by side */
#google_translate_element .goog-te-gadget-simple .goog-te-gadget-icon,
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value,
#google_translate_element .goog-te-gadget-simple select {
    display: inline-block !important;
    vertical-align: middle !important;
    float: none !important;
    clear: none !important;
}

@media (max-width: 768px) {
    #google_translate_element {
        max-width: 120px !important;
        margin-left: 8px !important;
    }
    
    #google_translate_element .goog-te-gadget-simple {
        max-width: 110px !important;
        padding: 3px 6px !important;
        font-size: 0.7rem !important;
        height: 26px !important;
    }
    
    #google_translate_element select {
        max-width: 100px !important;
        font-size: 0.7rem !important;
    }
}

.flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.divider {
    color: #ddd;
    font-weight: 300;
}

/* Logo Section */
.logo-wrapper {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-wrapper:hover {
    transform: translateY(-3px);
}

.site-logo-img {
    max-width: 150px !important;
    max-height: 150px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
    margin: 0 !important;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.logo-inner {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 2;
}

.logo-text {
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    letter-spacing: -1px;
}

.logo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-shadow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

/* Header Text Content */
.header-text-content {
    padding-left: 25px;
}

.country-name {
    margin-bottom: 10px;
}

.name-text {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.address-text {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
    animation: addressGlow 3s ease-in-out infinite;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

@keyframes addressGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(135, 206, 250, 0.6), 0 0 16px rgba(100, 181, 246, 0.4), 0 0 24px rgba(0, 163, 221, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.7);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 12px rgba(52, 152, 219, 0.8), 0 0 24px rgba(0, 163, 221, 0.6), 0 0 36px rgba(25, 118, 210, 0.4), 3px 3px 6px rgba(0, 0, 0, 0.8);
        transform: scale(1.02);
    }
}

.ministry-name {
    position: relative;
}

.ministry-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    margin: 0;
    letter-spacing: 0.6px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.title-underline {
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #5AC8FA 0%, rgba(0, 122, 255, 0.5) 100%);
    margin-top: 10px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
}

/* Navigation Bar */
.navigation-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 163, 221, 0.1);
}

.main-navigation {
    padding: 0;
    background: transparent !important;
}

.nav-main-menu {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.nav-item {
    margin: 0 3px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px !important;
    color: #333 !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #00A3DD !important;
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.15) 0%, rgba(0, 163, 221, 0.15) 100%);
    color: #00A3DD !important;
    font-weight: 600;
}

/* Dropdown Menu */
.mega-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 10px;
    min-width: 320px;
    background: white;
    animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%);
    transform: translateX(5px);
    color: #00A3DD;
}

.item-icon {
    font-size: 1.3rem;
    color: #00A3DD;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 2px;
}

.item-desc {
    font-size: 0.8rem;
    color: #666;
}

.dropdown-item:hover .item-title {
    color: #00A3DD;
}

/* Mobile Toggler */
.custom-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: transparent;
    cursor: pointer;
}

.custom-toggler span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Admin Link */
.admin-link {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%) !important;
    border: 2px solid #00A3DD;
}

.admin-link:hover {
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%) !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .ministry-title {
        font-size: 1.2rem;
    }
    
    .name-text {
        font-size: 2rem;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
    }
    
    .logo-inner {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .site-logo-img {
        max-width: 120px !important;
        max-height: 120px !important;
    }
    
    .nav-main-menu {
        padding: 15px 0;
    }
    
    .nav-link {
        padding: 10px 15px !important;
    }
    
    .mega-dropdown {
        min-width: 100%;
    }
    
    /* Critical: Prevent overflow */
    .world-class-header {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Tablet Header Text Optimization */
    .main-header-section {
        padding: 20px 0 !important;
        overflow: hidden !important;
    }
    
    .main-header-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .main-header-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .main-header-section .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .header-flex-container {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .header-text-wrapper {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .header-logo-wrapper {
        order: 1 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .header-flag-wrapper {
        order: 3 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .header-text-content {
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .hotel-title {
        font-size: 1.3rem !important;
        letter-spacing: 0.8px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5) !important;
        text-stroke: 1px rgba(255, 255, 255, 0.5) !important;
        animation: none !important;
        overflow: visible !important;
    }
    
    .address-text {
        font-size: 0.8rem !important;
        letter-spacing: 0.4px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        animation: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 768px) {
    .utility-links {
        justify-content: center !important;
        margin-top: 10px;
    }
    
    .search-container {
        margin-bottom: 15px;
    }
    
    .header-text-content {
        padding-left: 0;
        text-align: center !important;
        padding: 0 10px !important;
    }
    
    .ministry-title {
        font-size: 1rem;
    }
    
    .name-text {
        font-size: 1.6rem;
    }
    
    .logo-container {
        width: 80px;
        height: 80px;
    }
    
    .logo-inner {
        width: 80px;
        height: 80px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .site-logo-img {
        max-width: 100px !important;
        max-height: 100px !important;
    }
    
    /* Mobile Header Text Optimization */
    .main-header-section {
        padding: 15px 0 !important;
        overflow: hidden !important;
    }
    
    .main-header-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .header-text-content {
        padding: 0 8px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .hotel-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.5) !important;
        text-stroke: 0.8px rgba(255, 255, 255, 0.5) !important;
        overflow: visible !important;
    }
    
    .address-text {
        font-size: 0.75rem !important;
        letter-spacing: 0.3px !important;
        padding: 0 !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
    }
}

@media (max-width: 576px) {
    .main-header-section {
        padding: 12px 0 !important;
        overflow: hidden !important;
    }
    
    .main-header-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .header-text-content {
        padding: 0 5px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .hotel-title {
        font-size: 0.95rem !important;
        letter-spacing: 0.3px !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.5) !important;
        text-stroke: 0.5px rgba(255, 255, 255, 0.5) !important;
        overflow: visible !important;
    }
    
    .address-text {
        font-size: 0.7rem !important;
        letter-spacing: 0.2px !important;
        padding: 0 !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
    }
    
    .site-logo-img {
        max-width: 70px !important;
        max-height: 70px !important;
    }
    
    .flag-wrapper img {
        max-width: 50px !important;
        max-height: 50px !important;
    }
}

/* Performance optimization - reduce animations on mobile */
@media (max-width: 991px) {
    .logo-wrapper,
    .logo-inner,
    .logo-container {
        animation: none !important;
    }
    
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }
    }
}

/* Content Sections */
.home-page {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 30px !important;
    margin: 20px auto;
    max-width: 1400px;
}

.main-content {
    margin-top: 30px;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .home-page {
        padding: 15px !important;
        margin: 10px;
    }
    
    .frame {
        width: 100% !important;
        max-width: 250px;
    }
    
    .custom-btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #00A3DD;
    outline-offset: 2px;
}

/* Navigation Dropdown Styles */
.navbar .dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    background: white;
}

.navbar .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%);
    color: #00A3DD;
    padding-left: 25px;
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

.navbar .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #007AFF 0%, #00A3DD 100%);
}

/* Footer Enhancements */
.custom-footer a:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

.custom-footer .fa-youtube:hover {
    background: #FF0000 !important;
    color: white !important;
}

.custom-footer .fa-facebook-f:hover {
    background: #1877F2 !important;
    color: white !important;
}

.custom-footer .fa-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
}

.custom-footer .fa-twitter:hover {
    background: #1DA1F2 !important;
    color: white !important;
}

/* Zanzibar Yellow Accent */
.accent-yellow {
    color: #5AC8FA !important;
}

.bg-accent-yellow {
    background-color: #5AC8FA !important;
}

/* Zanzibar Green Accent */
.accent-green {
    color: #007AFF !important;
}

.bg-accent-green {
    background-color: #007AFF !important;
}

/* Additional Polish */
.container.max-1920 {
    max-width: 1920px;
    margin: 0 auto;
}

/* Smooth transitions for all interactive elements */
a, button, .cursor-pointer {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states */
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(0, 163, 221, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Document Icon Section Styles */
.doc-icon2 {
    background: linear-gradient(135deg, rgba(0, 163, 221, 0.1) 0%, rgba(0, 163, 221, 0.1) 100%);
    height: 200px;
    color: #00A3DD;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.doc-icon2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

@media (min-width: 576px) {
    .doc-icon2 {
        display: flex;
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .doc-icon2 {
        display: none;
    }
}

/* Tab Button Styles for Documents */
.tab-btn {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid #00A3DD;
    background-color: white;
    color: #00A3DD;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active {
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 163, 221, 0.3);
}

.tab-btn:hover {
    background: linear-gradient(135deg, #00A3DD 0%, #007AFF 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(0, 163, 221, 0.4);
    transform: translateY(-2px);
}

.tab-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 163, 221, 0.25);
}

/* Document Card Styles */
.doc-card {
    min-height: 100px;
    background-color: #FAF9F6;
    border: 2px solid rgba(0, 163, 221, 0.3);
    color: #00A3DD;
    border-radius: 12px;
    margin: 5px 4px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: rgba(0, 163, 221, 0.6);
}

.doc-card p {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}

.control-elipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

@media (max-width: 1024px) {
    .control-elipsis {
        max-width: 30ch;
    }
    .on-small {
        margin-bottom: 5rem;
    }
}

@media (min-width: 1025px) {
    .control-elipsis {
        max-width: 20ch;
    }
}

/* Video Thumbnail Styles */
.media-thumbnail {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.media-thumbnail:hover {
    transform: translateY(-5px);
}

.box-shadow-slight {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.has-hover-bounce:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-item {
    margin: 0 4px;
}

.pagination .page-link {
    color: #6c757d;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    text-decoration: none;
    transition: none;
    font-weight: normal;
    min-width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
    transform: none;
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
    box-shadow: none;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-link i {
    font-size: 0.9rem;
}

/* Header Flag (Static) */
.flag-wrapper {
    position: relative;
    display: inline-block;
}

/* Responsive flag sizing */
@media (max-width: 768px) {
    .flag-wrapper img {
        max-width: 80px !important;
        max-height: 80px !important;
    }
}
