.coin_main {
    font-family: sans-serif;
    margin-top: 30px !important;
}

.countrySelect__label {
    font-weight: bold;
    margin-right: 10px;
}

.countrySelect {
    padding: 8px;
    margin-bottom: 20px;
}

.golderror {
    color: red;
    padding: 10px;
    border: 1px solid red;
    margin-bottom: 20px;
}

#countryList .row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

#countryList .header-row {
    font-weight: bold;
    background-color: #0268A6;
}

#countryList .col {
    flex: 1;
    padding: 5px;
    text-align: left;
}

.only-mobile {
    display: none;
}

/* Estilos para ecrãs mais pequenos (mobile) */
@media (max-width: 768px) {
    #countryList .header-row {
        display: none;
    }

    #countryList .row {
        flex-direction: column;
        border: 1px solid #ccc;
        margin-bottom: 15px;
        padding: 10px;
    }

    #countryList .col {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }
    
    #countryList .col:last-child {
        border-bottom: none;
    }

    .only-mobile {
        display: inline-block;
        font-weight: bold;
        margin-right: 10px;
    }
}