/* My Website CSS */
.language-dropdown {
    margin-top: 20px;
    position: relative;
}

#language-btn {
    width: 100%;
    background: rgba(255,255,255,.8);
    border: none;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.language-menu {
    display: none;
    position: absolute;
    left: 0;
    bottom: 110%;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    overflow: hidden;
}

.language-menu button {
    width: 100%;
    border: none;
    background: white;
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.language-menu button:hover {
    background: #f5f5f5;
}
