
/* Standaard opmaak voor clubkaarten */
.club-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.club-card:hover {
    transform: translateY(-10px);
}

/* Logo styling */
.club-card img {
    border-radius: 50%;
    max-width: 150px;
    margin: 0 auto 1rem;
}

/* Header styling */
header {
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

/* Extra styling voor buttons */
.bg-blue-600 {
    background-color: #1d4ed8;
}

.bg-green-600 {
    background-color: #16a34a;
}

button, .btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
}

button:hover, .btn:hover {
    opacity: 0.8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .club-card {
        margin-bottom: 1rem;
    }
}
