/* Einheitliche Styles für Labels */
.label-style {
    font-size: 0.875rem;
    /* 14px */
    color: #374151;
    /* text-gray-700 */
}

/* Einheitliche Styles für alle Input-Felder */
.input-style {
    display: block;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    /* border-gray-300 */
    border-radius: 0.375rem;
    /* rounded-md */
    font-size: 0.875rem;
    /* text-sm */
    color: #374151;
    /* text-gray-700 */
}

/* 💡 NEUE Klasse für Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out;
}

/* 🎨 Primärer Button (z.B. für "Schritt 1") */
.btn-primary {
    background-color: #3b82f6;
    /* Tailwind: bg-blue-500 */
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2563eb;
    /* Tailwind: hover:bg-blue-600 */
}

/* 🟠 Amber Admin-Button */
.btn-admin {
    background-color: #d97706;
    /* Tailwind: bg-amber-600 */
    color: white;
}


.btn-admin:hover {
    background-color: #b45309;
    /* Tailwind: bg-amber-700 */
}


/* 🔴 Abmelde-Button */
.btn-danger {
    background-color: #ef4444;
    /* Tailwind: bg-red-500 */
    color: white;
}

.btn-danger:hover {
    background-color: #dc2626;
    /* Tailwind: hover:bg-red-600 */
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Blinkt nur, solange es aktiv ist */
.blink {
    animation: fade 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-slow {
    animation: fadeIn 1.2s ease-out forwards;
}


/* 🌄 Sauerland-Farben & Buttons */

/* Farben */
:root {
    --color-tuerkis: #2BBBAD;
    --color-gruen: #4CAF50;
    --color-dunkel: #1C1C1E;
    --color-hellgrau: #F5F5F5;
}

.border-tuerkis {
    border-color: #2BBBAD;
}


.text-tuerkis {
    color: #2BBBAD;
    transition: color 0.2s ease;
}

.text-tuerkis:hover {
    color: #4CAF50;
}



/* 🌊 Türkisfarbener Button */
.btn-tuerkis {
    background-color: var(--color-tuerkis);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border: none;
}

.btn-tuerkis:hover {
    background-color: var(--color-gruen);
}

/* 🌿 Outline-Variante */
.btn-outline-tuerkis {
    background-color: white;
    color: var(--color-tuerkis);
    border: 2px solid var(--color-tuerkis);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-outline-tuerkis:hover {
    background-color: var(--color-tuerkis);
    color: white;
}

/* 📦 Card-Stil auf dunklem Hintergrund */
.card-dark {
    background-color: var(--color-dunkel);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 🪶 Leichtes Infofeld */
.info-box {
    background-color: var(--color-hellgrau);
    color: #374151;
    padding: 0.75rem 1rem;
    border-left: 4px solid var(--color-tuerkis);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

/* ⛔️ Deaktivierter Button */
.btn-disabled {
    background-color: #d1d5db;
    /* Tailwind: bg-gray-300 */
    color: #9ca3af;
    /* Tailwind: text-gray-400 */
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

/* 📏 Button-Größen */
.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    /* text-sm */
}

.btn-medium {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    /* text-base */
}

.btn-xl {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    /* text-lg */
}

/* ⭐ Animierter Stern (Trainingstag-Auswahl) */
.stern {
    transition: transform 0.2s ease, color 0.2s ease;
    font-size: 2rem;
}

.stern:hover {
    transform: scale(1.25);
    color: #facc15;
    /* Tailwind: yellow-400 */
}

/* FullCalendar Button-Styling */
.fc-button {
    background-color: #00bfa6;
    /* Türkis */
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.fc-button:hover {
    background-color: #009e8d;
}

.fc-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.fc .fc-toolbar-title {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 640px) {
    .fc .fc-toolbar-title {
        font-size: 1.0rem !important;
        font-weight: 500 !important;
    }
}

.fc .fc-list-day-cushion {
    font-size: 0.875rem;
    /* ~14px */
    font-weight: 500;
    padding: 0.3rem 0.5rem;
}

@media (max-width: 640px) {
    .fc .fc-list-day-cushion {
        font-size: 0.75rem;
        /* ~12px */
    }
}


/* Für Farben im Footer */
.bg-dunkel {
    background-color: var(--color-dunkel);
}

.text-hellgrau {
    color: var(--color-hellgrau);
}

.hover\:text-tuerkis:hover {
    color: var(--color-tuerkis);
}

/* Swiper Navigation an Sauerland-Farben anpassen */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-tuerkis);
}

.swiper-pagination-bullet {
    background-color: var(--color-hellgrau);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-tuerkis);
    opacity: 1;
}

/* Für Farben im BG */
.bg-tuerkis {
    background-color: var(--color-tuerkis);
}