body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:  rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    margin-top: 100px; /* Space below the header */
    position: relative; /* Ensures it appears above the overlay */
    z-index: 20;
    max-width: 600px;
    width: 100%;
    background: #4682b4; /* Steel blue */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white; /* White text */
}

@media (max-width: 600px) {
    .container {
        margin-top: 8vh; /* More space on smaller screens */
    }
}

/* Balken oben (jetzt über die ganze Breite) */
.header-bar {
    background-color: #1d3c5f;
    padding: 50px 0; /* reduce from 80px unless you want it huge */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    color: white;

    display: flex;
    align-items: center;        /* vertical centering */
    justify-content: center;    /* horizontal centering */
}

.header-icons {
    position: absolute;
    right: 30px;

    display: flex;
    gap: 20px;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

.header-icons i:hover {
    color: #b0c4de;
}

.logo-container {
    display: flex;
    align-items: center; /* keeps logo + text aligned nicely */
}

.logo {
height: 50px;
margin-right: 10px; /* Abstand zwischen Logo und Name */
}

.site-name {
font-size: 35px;
font-weight: bold;
}

h1 {
    text-align: center;
    color: white; /* White text */
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: white; /* White text */
}
input, button {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input {
    background-color: #b0c4de; /* Light steel blue */
    color: #333; /* Dark text for input fields */
}
button {
    background-color: #1e90ff; /* Dodger blue */
    color: white; /* White text */
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #1c86ee; /* Slightly darker blue */
}

.offers-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    color: black;
    border-radius: 6px;
    overflow: hidden;
}

.offers-table th {
    background-color: #1d3c5f;
    color: white;
    padding: 10px;
    text-align: left;
    border: 1px solid black;
    border-collapse: collapse;
}

.offers-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    border: 1px solid black;
    border-collapse: collapse;
}

.offers-table tr:hover {
    background-color: #f5f5f5;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.filters input,
.filters select {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    border: none;
}

/* max-width: 900px; */

/* Container for the icon and the menu */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style for the actual dropdown box */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    right: 0; /* Aligns menu to the right of the icon */
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Helper class to show the menu */
.show {
    display: block;
}

/* Style for the icons to show they are clickable */
.dropdown-trigger {
    cursor: pointer;
    padding: 5px;
}