﻿* {
    user-select:none;
}
.dropdown-menu {
    background: white;
    width: 300px;
    position: fixed;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.dropdown-menu-option {
    text-align: center;
    cursor: pointer;
    border: 0.5px solid #0A315F;
    border-radius: 4px;
    color: #0A315F;
}

    .dropdown-menu-option:hover {
        color: white;
        background: #0A315F;
    }

.main-language-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option {
    padding: 10px 12px;
    cursor: pointer
}

.active-dropdown {
    color: white;
    background: #0A315F;
}

.active-lang-option {
    background: #F0F5FE
}

.active-language-title {
    color: #0A315F !important;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 10px; /* Space between items */
    padding: 10px; /* Padding around the grid */
}
