/* Stempelkaart stijlen */
#stamp-card-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fcf5e0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e6d292;
}

.stamp-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.stamp-row {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.stamp-spot {
    width: 90px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: #f0e0c0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stamp-spot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.stamp-spot.filled img {
    opacity: 1;
}

#completed-cards {
    background-color: #fff6d5;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #e6d292;
    text-align: center;
}

.completed-count {
    font-weight: bold;
    color: #b5922b;
    font-size: 1.1em;
}

#stampcard-complete {
    display: none;
    padding: 15px;
    background-color: #fff6d5;
    border: 2px solid #e6d292;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

#stampcard-complete h2 {
    color: #b5922b;
    margin-top: 0;
}

#reset-stamps {
    background-color: #b5922b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

#reset-stamps:hover {
    background-color: #8a6d1f;
}

.stamp-count {
    font-weight: bold;
    color: #b5922b;
}

/* Animatie voor het voltooien van de stempelkaart */
@keyframes celebrate {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.celebration {
    animation: celebrate 0.5s ease-in-out 3;
}

/* Responsive aanpassingen */
@media (max-width: 400px) {
    .stamp-spot {
        width: 70px;
        height: 90px;
    }
    
    .stamp-row {
        gap: 5px;
    }
    
    #stamp-card-container {
        padding: 10px;
    }
}