/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    height: 100vh;
}

/* Sidebar links */
.sidebar {
    width: 250px;
    background-color: #003366; /* dunkles Blau */
    color: white;
    padding: 120px 0 20px; /* Sidebar nach unten versetzt */
    overflow-y: auto;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sidebar li:hover {
    background-color: #00509e;
}

/* Hauptinhalt */
.content {
    flex-grow: 1;
    background-color: white;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Bilder und PDFs */
img,
embed {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Bewerbungstext */
.animated-text {
    max-width: 800px;
    animation: fadeIn 1.2s ease-in-out;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* Überschrift Bewerbung */
.animated-text h1 {
    text-align: left;
    color: #003366;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold; /* Jetzt dicker */
}

/* Adresse unter der Überschrift */
.address {
    font-size: 14px;
    color: #555;
    margin: 10px 0 20px;
    line-height: 1.5;
}

/* Untertitel Servicetechniker */
.animated-text h2 {
    text-align: left;
    color: #003366;
    margin-bottom: 15px;
    font-size: 16px; /* Kleiner als H1 */
    font-weight: normal;
}

/* Einfache Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
