/* Simple Countries Grid */
.countries-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.country-card-simple {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.country-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Flag Style */
.country-flag-wrapper {
    flex-shrink: 0;
}

.country-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Country Name */
.country-name-simple {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}