/* Container for CURRENCIES */
.currency-button-group {
  /*display: inline-block;*/
    display: block;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping if too many buttons */
}

/***** COLOR WHEN HOVER***/
.currency-button:hover {
    background-color: #3e246e;
}

/* CSS class currency-button, set size 100x100 with vertical layout */
.currency-button {
    width: 150px;
    height: 100px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    cursor: pointer;
    gap: 5px;
}

.currency-button img {
    width: 100px;
    height: 60px;
    object-fit: cover;
}

.currency-button.selected {
        width: 150px;
    height: 100px;
    background-color: crimson;
}

.currency-button span {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

