.float-button {
    position: fixed;
    background-color: #FF8A2A; /* Orange für Button 1 */
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    z-index: 9999999;
    font-size: 18px;
}
.float-button#button2 {
    background-color: #00A6EB; /* Blau für Button 2 */
}
#button1 {
    bottom: 70px;
    right: 20px;
    margin-bottom: 10px;
    width: 150px;
    transition: width 0.5s ease;
}
#button2 {
    bottom: 20px;
    right: 20px;
    width: 125px;
    transition: width 0.5s ease;
}
.float-button .hover-text {
    position: absolute;
    top: 50%;
    left: 160px;
    transform: translateY(-50%);
    opacity: 0;
    transition: left 0.5s ease, opacity 0.5s ease;
    white-space: nowrap;
    min-width: 350px;
    color: #fff;
}
.float-button:hover .hover-text {
    opacity: 1;
}
#button1:hover {
    width: 540px;
}
#button1:hover .hover-text {
    left: 135px;
}
#button2:hover {
    width: 580px;
}
#button2:hover .hover-text {
    left: 112px;
}
.float-button-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    width: 50%;
    border-radius: 0;
    text-align: center;
    transition: height 0.3s ease;
    height: 50px;
    z-index: 999999;
}
#mobile-button1 {
    left: 0;
    background-color: #FF8A2A;
    padding-top: 12px;
}
#mobile-button2 {
    right: 0;
    background-color: #00A6EB;
    padding-top: 12px;
}
.float-button-mobile.expanded {
    height: 115px;
}
.float-button-mobile .default-text {
    padding-top: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
.float-button-mobile .extra-text {
    display: none;
    padding-top: 10px;
    font-size: 14px;
    color: #fff;
    line-height: 26px;
}
.float-button-mobile.expanded .extra-text {
    display: block;
}
@media screen and (max-width: 768px) {
    .desktop {
        display: none;
    }
    .float-button-mobile {
        display: block;
    }
}