body {
    background-color: #3388ff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

/* Exakt 598px breite Fläche für alle Schriften und Menüs */
.main-wrapper {
    width: 598px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
}

.header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 { 
    margin: 0; 
    font-size: 24px; 
}

/* Hamburger Button OHNE Hintergrund */
.hamburger-btn {
    background: none;
    border: none;
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Oberes Menü (Linksbündig ausgelegt) */
nav {
    background-color: #333333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.top-menu {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.top-menu a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
}

.top-menu a:hover {
    text-decoration: underline;
}

/* Orts-Grid-Anordnung */
.ort-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ort-block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
}

h2 { 
    margin: 0 0 4px 0; 
    font-size: 16px; 
    border-bottom: 1px solid rgba(255,255,255,0.2); 
    padding-bottom: 3px;
}

p { 
    margin: 0 0 6px 0; 
    font-size: 12px; 
    opacity: 0.8; 
}

/* Anzeige für Datum und Uhrzeit zusammen */
.date-time-display { 
    font-family: monospace; 
    font-size: 13px; 
    font-weight: bold; 
}

/* Projekt-Fusszeilentext */
.project-footer-text {
    color: #b0c4de;
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.5px;
}