/* Country card styles */
.country-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.country-flag {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 10px;
    object-fit: cover;
}

.country-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

/* Starting price styles */
.starting-price {
    font-size: 13px;
    color: #3498db;
    font-weight: 600;
    margin-top: 5px;
    padding: 4px 8px;
    border-radius: 12px;
    background-color: rgba(52, 152, 219, 0.1);
    display: inline-block;
}

