 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 16px;
}

/* Список стран */
.country-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.list-item {
    background-color: white;
    border-left: 4px solid #c9322c;
    border-radius: 4px 0 0 4px;
    margin-bottom: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.2s;
}

.list-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-right: 16px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9em;
    color: #555;
}

.stats span strong {
    color: #c9322c;
    font-weight: 600;
}

/* Сообщения об ошибках/отсутствии данных */
.error, .no-data {
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.error {
    color: #d32f2f;
}

.no-data {
    color: #757575;
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .country-name {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .stats {
        width: 100%;
        justify-content: space-between;
    }
}