.floating-tab {
    color: var(--buddysports-color-primary);
    position: fixed;
    left: 0;
    bottom: 0;
    /*transform: translateY(-50%);*/
    white-space: nowrap;
    width: auto;
    max-width: 150px;
    border: 2px solid var(--buddysports-color-primary);
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 10px 0 0;
    padding: 10px;
    background: white;
    z-index: 1;
}
    
    #themeHeadline {
        text-align: center;
        margin: 0;
        font-weight: bold;
        background: white;
        cursor: pointer;
        border-radius: 0 10px 10px 0;
        white-space: normal;
        display: block;
       
    }

    .theme-form {
        margin-top: 10px;
        /*transition: opacity 5s ease-in-out, visibility 5s ease-in-out;*/
        /*transition: all 5s ease-in-out;*/
    }

.theme-form label {
    font-size: 0.9rem;
    display: block;
    cursor: pointer;
    padding: 6px;
}

/* Apply button */
#applyTheme {
    display: block;
    margin-top: 10px;
    width: auto;
    color: #000;
    background-color: var(--buddysports-color-lightcoral-hsl);  
    border: 2px solid  var(--buddysports-color-primary);
    border-radius: 10px;
    transition: ease 0.5s;
    text-decoration: none;
    text-align: center;
}

#applyTheme:hover {
    border-radius: 10px;
    color:  var(--buddysports-color-primary);
}

#applyTheme i{
    margin-right: 2px;
}