:root {
    --azuurblauw: #0C40AA;
    --goud: #FCDD07;
    --azuurlichtst: #BCCAE7;
}

* {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
}

.heading {
    font-family: 'Source Sans Pro', Arial, sans-serif;
}

#app {
    background: transparent;
}

.v-tab {
    text-transform: none !important;
    font-family: 'Source Sans Pro', Arial, sans-serif !important;
}

.bg-azuurlichtst {
    background: linear-gradient(135deg, #BCCAE7 0%, #d4dff3 100%) !important;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
}

.calendar-header {
    background: #0C40AA;
    color: white;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.calendar-day {
    background: white;
    min-height: 80px;
    padding: 8px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}

.calendar-day:hover {
    background: #f5f5f5;
}

.calendar-day.other-month {
    background: #fafafa;
    color: #999;
}

.calendar-day.has-events {
    background: #e8f0ff;
}

.day-number {
    font-weight: bold;
    margin-bottom: 4px;
}

.event-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: #0C40AA;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.speltak-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
