/* ------------------------------
   Md Shakibur Rahman
--------------------------------*/
/* 
body {
    font-family: "Inter", Arial, sans-serif;
    background: #fafaff;
    margin: 0;
    padding: 40px;
} */

/* .country-section {
    max-width: 1100px;
    margin: auto;
} */

h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0c1b3c;
    margin: 40px 0 15px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e4e6ef;
    border-radius: 6px;
    font-size: 15px;
    color: #2b2d42;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.country-item img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.country-item:hover {
    background: #1976f1;
    color: #ffffff;
    border-color: #1976f1;
}

/* .country-item:hover img {
    filter: brightness(0) invert(1);
} */

.no-country {
    cursor: default;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .country-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
