/* Allgemeines Styling für den Hauptbereich */
main {
    max-width: 1200px;
    margin: 80px auto 40px auto; /* Abstand nach oben für fixierten Header */
    padding: 20px;
}

/* Überschriften */
h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

/* Grid für die Download-Karten */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Styling für Download-Karten */
.download-card {
    background-color: #1E293B; /* Dunkles Blau/Grau */
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s ease-in-out;
}

.download-card:hover {
    transform: scale(1.03);
}

/* Download-Button */
.download-card a {
    display: block;
    margin-top: 10px;
    color: #60A5FA; /* Blau */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.download-card a:hover {
    color: #93C5FD; /* Helleres Blau */
}

/* Info-Button */
.info-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #D1D5DB; /* Hellgrau */
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.info-button:hover {
    color: #60A5FA; /* Blau */
}

/* Info-Popout */
.info-box {
    display: none;
    position: absolute;
    background-color: #374151; /* Dunkler Hintergrund */
    color: white;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    top: 40px;
    right: 10px;
    width: 200px;
    z-index: 10;
}

.info-box.active {
    display: block;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    main {
        padding: 10px;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}
