	/* assets/css/kukident.css */
body {
    background-color: #f8f9fa; /* Helles Grau, passend zu Bootstrap */
    font-size: 16px;
    margin: 0;
    font-family: roboto;
}

.container {
    max-width: 90%;
    padding: 15px;
}

.btn-primary {
    background-color: #4f46e5;
    border-color: #4338ca;
}

.btn-primary:hover {
    background-color: #4338ca;
    border-color: #3730a3;
    transform: scale(1.05); /* Leichtes Vergrößern */
    transition: all 0.2s ease; /* Sanfte Animation */
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
}

.fc-event {
    background-color: #4f46e5;
    border-color: #4338ca;
    color: white;
    font-size: 0.9em;
    padding: 5px 8px; /* Mehr Padding für mehr Platz */
    border-radius: 5px;
    line-height: 1.4; /* Bessere Lesbarkeit */
}

.fc-event:hover {
    background-color: #4338ca;
}

.fc-event-abgeschlossen {
    background-color: #adb5bd !important;
    border-color: #adb5bd !important;
}

.fc-timegrid-slot {
    min-height: 30px !important;
}

.fc-timegrid-col {
    min-height: 30px !important;
}

.fc-timegrid-slot-label {
    font-size: 0.9em;
}

.form-label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.form-control-sm, .form-select-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    height: calc(1.5em + 0.5rem + 2px);
}

.btn-outline-primary.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Anpassungen */
@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }
    .fc-event {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    .fc-timegrid-slot {
        min-height: 0.8rem !important;
    }
    .fc-timegrid-col {
        min-height: 0.8rem !important;
    }
    .fc-timegrid-slot-label {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
}