/* /css/styles.css */

/* Dunkles Grundtheme */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* Noch etwas dunkleres Grau/Schwarz für den Hintergrund */
    background-color: #141414; 
    color: #f0f0f0;
}

header, nav, footer {
    background-color: #1f1f1f;
    padding: 15px;
    text-align: center;
}

header img {
    max-height: 100px;
}

/* Auffällige Akzentfarbe für Links und Buttons */
a, a:visited {
    /* Kräftige Akzentfarbe */
    color: inherit; 
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #242424; /* etwas dunkleres Grau für Kontrast */
    border-radius: 8px;
}

h1, h2, h3, h4 {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #ff007b; /* Akzent-Hintergrundfarbe */
    color: #fff;              /* Weißer Text */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    /* Beim Hover wird die Farbe etwas heller oder anders, 
       sodass sich ein deutlicher Effekt ergibt */
    background-color: #ff4da6;
    color: #fff; 
}

/* Tabellen-Stile */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table thead {
    background-color: #333;
}

table td, table th {
    padding: 10px;
    border: 1px solid #444;
}

/* Iframe-Hintergrund */
iframe {
    width: 100%;
    height: 600px;
    border: none;
    background-color: #333;
}

/* Grid für Bilder (z.B. in show_route.php) */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-grid img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.image-grid img:hover {
    transform: scale(1.05);
}
