/* Datei: assets/css/styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.menu-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Dashboard-Kacheln Layout */
.dashboard {
    display: flex;
    flex-wrap: wrap; /* Zeilenumbruch ermöglichen */
    gap: 20px; /* Abstand zwischen den Kacheln */
    justify-content: space-between; /* Gleichmäßige Verteilung */
}

.kachel {
    flex: 1 1 calc(50% - 20px); /* Zwei Kacheln pro Reihe */
    max-width: calc(50% - 20px); /* Maximal die Hälfte des Containers */
    height: 200px; /* Höhe der Kacheln */
    background-color: #007bff; /* Standard Blau */
    color: white; /* Weiße Schrift */
    display: flex;
    align-items: center; /* Zentrierung */
    justify-content: center; /* Zentrierung */
    border-radius: 8px; /* Runde Ecken */
    text-align: center;
    font-size: 18px;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}