html, body {
    min-width: 320px;
}
:where([class^="ri-"])::before {
    content: "\f3c2";
}



/* .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 51;
    background: #fff9f0;
    overflow: hidden;
}
.dropdown:hover .dropdown-menu a:hover {
    background: #f6e2c3;
} */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    background: #fff9f0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    z-index: 51;
    max-width: calc(100vw - 30px); /* safety */
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a:hover {
    background: #f6e2c3;
}



.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-button.active {
    background-color: #8B4513;
    color: white !important;
}
.country-card {
    transition: all 0.3s ease;
}
.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

