/* Styles for the dropdown menu */
.container {
    text-align: left;
    margin: 0px auto;
}

.dropdown {
    position: relative;
    display: inline-block;
}

#bewerben-btn {
    background-color: #8c0000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #353535;
    color: #fff;
    border: 0px solid #ccc;
    position: absolute;
    top: 100%;
    left: 0;
    width: 160%;
    font-family: Arial, sans-serif; /* Ändern Sie die Schriftart auf Arial */
}

#dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    color: #fff; /* Schriftfarbe auf Weiß ändern */
    text-decoration: none; /* Unterstreichung entfernen */
}

#dropdown-menu li:hover {
    background-color: #535353;
    color: #fff;
    text-decoration: none; /* Unterstreichung entfernen */
}

a:link, a:visited {
 text-decoration: none;
 color: white;
}

/* Show the dropdown menu when hovering over the button */
.dropdown:hover #dropdown-menu {
    display: block;
}
