/* ================================================
   CSS NUR für die Startseite index.php
   ================================================ */

/* Karten-Layout verbessern */
.index-card .card-body {
    text-align: left;
}

/* Beschreibung linksbündig erzwingen */
.index-description {
    text-align: left !important;
}

/* Abstand + schönes typografisches Layout */
.index-description {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Titel links, nicht mittig */
.index-title {
    text-align: left;
    font-weight: 600;
}

/* Optional: Einheitliche Kartenhöhe */
.index-card {
    height: 100%;
}
/* ================================================
   Buttons für die Startseite (index.php)
   ================================================ */

/* Download-Button – Standard */
.index-download-btn {
    background-color: #62b14d;  /* Bootstrap Primary #0d6efd; */
    color: #fff;
    border: none;
    padding: 0.45rem 0.9rem;
    border-radius: 0.35rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
    display: inline-block;
}

/* Hover-Effekt */
.index-download-btn:hover {
    background-color: #448a32; /* etwas dunkler #0b5ed7; */
    color: #fff;
    text-decoration: none;
}

/* Optional: kleines Schatten-Hover */
.index-download-btn:active {
    transform: scale(0.98);
}
/* ================================================
   Top-Navbar Styling (nur index.php)
   ================================================ */
.index-navbar {
    background-color: #ffffff;       /* weißer Header */
    padding: 0.75rem 0;              /* etwas höher */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* leichter Schatten */
}

.index-navbar .navbar-brand {
    color: #62b14d !important;       /* Blau wie Bootstrap Primary #0d6efd */
    font-weight: 700;
    font-size: 1.2rem;
}

.index-navbar .navbar-brand:hover {
    color: #0b5ed7 !important;
}

/* ================================================
   Admin-Button im Header (nur index.php) #0d6efd
   ================================================ */
.index-admin-btn {
    border: 1px solid #62b14d;
    color: #62b14d;
    background-color: #fff;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    border-radius: 0.35rem;
    transition: all 0.18s ease-in-out;
}

.index-admin-btn:hover {
    background-color: #448a32;
    color: #fff !important;
    text-decoration: none;
}
