﻿:root {
    --acghrs-active-text: #1f274c;
    --acghrs-accent-color: #5090F0;
}

/* Center the form */
.acghrs-country-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

/* Card wrapper */
.acghrs-country-select {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
}

/* Header */
.acghrs-country-select__header {
    font-size: 1.5rem;
    color: var(--acghrs-active-text);
    margin-bottom: 20px;
    text-align: center;
}

/* Label */
.acghrs-country-select__label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--acghrs-active-text);
}

/* Dropdown */
.acghrs-country-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--acghrs-accent-color);
    max-height: 180px;
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

    .acghrs-country-dropdown li {
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background 0.2s;
    }

        .acghrs-country-dropdown li:hover {
            background: rgba(80,144,240,0.1);
        }

        /* Flag icon spacing */
        .acghrs-country-dropdown li .fi {
            font-size: 1.2rem;
        }

/* Button */
.acghrs-country-select__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: var(--acghrs-accent-color);
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: background-color 0.2s, transform 0.2s;
}

    .acghrs-country-select__button:hover {
        background-color: #4070d0;
        transform: scale(1.02);
    }

/* Field spacing */
.acghrs-country-select__field {
    margin-bottom: 20px;
}

.acghrs-country-select__actions {
    margin-top: 10px;
}
