html, body {
    font-family: 'Segoe UI', sans-serif;
    background: #f0f4f8;
    margin: 0;
    padding: 10px;
    overscroll-behavior-y: contain;
}
.container { max-width: 850px; margin: 0 auto; }
.box {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}
.hidden { display: none; }
.nav-bar { display: flex; gap: 8px; margin-bottom: 15px; }
.nav-btn {
    flex: 1; padding: 12px; background: #34495e; color: white;
    border: none; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 16px;
}
.nav-btn.active { background: #3498db; }
input, textarea, select {
    width: 100%; padding: 12px; margin: 5px 0; border: 1px solid #ddd;
    border-radius: 8px; box-sizing: border-box; font-size: 16px;
}
button {
    width: 100%; padding: 12px; background: #2c3e50; color: white;
    border: none; border-radius: 8px; cursor: pointer; font-weight: bold;
}
.card {
    background: white; padding: 15px; margin-top: 10px; border-radius: 10px;
    position: relative; border-left: 8px solid #ccc; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Styling für das mittige Benachrichtigungsfenster */
#custom-toast {
    position: fixed !important; /* !important stellt sicher, dass nichts anderes überschreibt */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 25px 40px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    font-size: 1.3em; /* Etwas größer für bessere Sichtbarkeit */
    z-index: 999999;  /* Extrem hoch setzen */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: none;
    text-align: center;
    min-width: 350px;
    cursor: pointer;
}
.toast-success { background-color: #27ae60; border: 2px solid #1e8449; }
.toast-error { background-color: #e74c3c; border: 2px solid #c0392b; }


.cat-dringend { border-left-color: #e74c3c; }
.cat-dokument { border-left-color: #3498db; }
.cat-info { border-left-color: #2ecc71; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75em; font-weight: bold; }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.del-x { color: red; cursor: pointer; border: none; background: none; font-size: 22px; font-weight: bold; }
.translate-btn { background: #ecf0f1; color: #2c3e50; border: 1px solid #bdc3c7; padding: 5px 10px; font-size: 0.8em; width: auto; margin-top: 10px; }
.translation-area { margin-top: 15px; padding-top: 10px; border-top: 1px dashed #ccc; background: #fdfdfd; }
.pdf-item { background: #f9f9f9; padding: 12px; margin-bottom: 8px; border-radius: 8px; border: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.more-link { color: #3498db; font-size: 0.85em; cursor: pointer; text-decoration: underline; display: block; margin-top: 5px; }