body {
    background: #9CB8B7;
    font-family: "Poppins", sans-serif;
}

main {
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.Reriyaki {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2%;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

/* Container für linke Seite */
.LeftButLikeBig {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 49%;
    flex: 0 1 auto;
}

/* Container für rechte Seite */
.ItsWayToLate {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 49%;
    flex: 0 1 auto;
}

/* Gemeinsame Stile für alle Karten */
.cardleftBig,
.cardInt,
.cardlan,
.cardlanlearn,
.card {
    box-sizing: border-box;
    border-radius: 25px;
    background: #eae0c7;
    padding: 0.5rem;
    width: 100%;
    box-shadow: 6px 6px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Stile für die Datumsanzeige */
.date-display {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    font-style: italic;
}

/* Web-Version: Nur auf Desktop anzeigen */
.mobile-only {
    display: none;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .Reriyaki {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .LeftButLikeBig,
    .ItsWayToLate {
        max-width: 100%;
        width: 100%;
    }
    
    /* Web-Version des Datums auf Mobile ausblenden */
    .web-only {
        display: none;
    }
    
    /* Mobile-Version des Datums auf Mobile anzeigen */
    .mobile-only {
        display: block;
        margin-top: 20px;
        width: 95%;
    }
}

/* Optional für sehr kleine Displays */
@media (max-width: 480px) {
    .Reriyaki {
        padding: 10px;
        gap: 15px;
    }
    
    .LeftButLikeBig,
    .ItsWayToLate {
        gap: 15px;
    }
}