/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #003366;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 80px;
    height: auto;
    margin-left: 20px;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#search-button {
    background-color: #C50014;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


#search-results {
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background-color: #003366;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* styles.css */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px;
    height: auto;
    margin-right: 10px; /* Platz zwischen Logo und Text */
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #003366; /* Farbe für den Text */
}

/* styles.css */
.search-container {
    display: flex;
    align-items: center;
}

.search-label {
    margin-right: 10px;
}

#search-input {
    flex: 1; /* Die Suchleiste wird den verfügbaren Platz einnehmen */
    padding: 10px; /* Vergrößert den Innenraum der Suchleiste */
}

.logo-text {
    color: white;
}



