:root {
    --p: #27ae60; --b: #3498db; --bg: #121212; --c: #1e1e1e;
    --g: #f1c40f; --o: #e67e22; --r: #e74c3c; --pk: #e91e60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg); color: #eee;
    margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container { 
    width: 100%; 
    max-width: 550px; 
    padding: 15px; 
    text-align: center; 
    box-sizing: border-box; 
}

/* Logo & Branding */
.logo-area h1 { font-size: 2.2rem; margin: 20px 0 0; color: var(--p); letter-spacing: -1px; }
.logo-area p { color: #888; margin: 5px 0 30px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* Hauptmenü Grid */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 35px; }
.main-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 18px 5px; border-radius: 18px; text-decoration: none; color: white;
    font-weight: bold; font-size: 0.7rem; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.05);
    -webkit-appearance: none;
}
.main-btn span.icon { font-size: 1.8rem; margin-bottom: 5px; }
.badge { background: rgba(0,0,0,0.4); padding: 2px 10px; border-radius: 10px; margin-top: 6px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.1); }

.b-offer { background: var(--p); }
.b-search { background: var(--b); }
.b-request { background: var(--o); }
.b-view { background: #2a2a2a; }

/* Listenansicht mit den farbigen Rändern */
.preview-list { text-align: left; margin-top: 10px; width: 100%; }
.preview-item {
    background: var(--c); margin-bottom: 8px; padding: 12px; border-radius: 12px;
    border-left: 4px solid var(--p); font-size: 0.85rem; display: flex; justify-content: space-between;
    align-items: center; text-decoration: none; color: inherit;
    -webkit-tap-highlight-color: transparent;
}
/* Spezialfarben für die Ränder */
.preview-item.req { border-left-color: var(--b) !important; }
.preview-item.ladies { border-left-color: var(--pk) !important; border-left-width: 8px !important; }

.p-route { font-weight: bold; display: block; color: #fff; }
.p-time { font-size: 0.75rem; color: var(--g); }

/* Formularelemente Safari Fix */
input, select, textarea {
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px !important;
    background: #252525;
    color: white;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

/* Karten & Footer */
.card { background: var(--c); padding: 25px; border-radius: 20px; border: 1px solid #333; margin-bottom: 30px; text-align: left; }
.footer-nav { margin-top: auto; padding: 30px 0; display: flex; justify-content: center; gap: 25px; }
.footer-nav a { color: #555; text-decoration: none; font-size: 0.8rem; font-weight: bold; }

/* Feedback Button */
.feedback-btn { position: fixed; bottom: 20px; right: 20px; background: var(--g); color: #000; padding: 12px 20px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 0.8rem; box-shadow: 0 4px 12px rgba(0,0,0,0.4); z-index: 100; }
