.flag-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.icon-button {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: none;
    margin-right: 5px;
    background-color: #007bff;
}

.icon-button:hover {
    background-color: #0056b3;
}

.arrow-down {
    cursor: pointer;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.arrow-down.rotated {
    transform: rotate(180deg);
}

.details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.details.visible {
    max-height: 200px; /* Настройте это значение в зависимости от содержимого */
}