#header_bg {
    background-color: lightgray;
    width: 100%;
    margin: 0;
    border: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

#header_block {
    display: flex;
    align-items: center;
}

#header_logo {
    color: black;
    font-size: 1.3em;
    text-align: left;
    text-decoration: none;
    padding: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#header_logo:hover {
    color: gray;    
}

#header_h1 {
    font-size: 1.5em;
    color: black;
    text-align: center;
    padding-left: 15px;
    margin: 0;
}

#header_back_button {
    /* Wichtig für Links */
    display: inline-block;
    text-decoration: none;  /* Entfernt Unterstreichung */
    text-align: center;
    line-height: 30px;  /* Zentriert den Text vertikal */
    
    /* Dein bestehendes Styling */
    width: 180px;
    height: 30px;
    margin: 5px;
    
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    border: none;
    
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    
    transition: all 0.3s ease;
}

#header_back_button:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    color: white;  /* Stellt sicher, dass die Textfarbe weiß bleibt */
}