﻿.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Standardmäßig versteckt */
    background-color: #d08b0a;
    color: white;
    border: none;
    border-radius: 10%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-top:hover {
    background-color: #d08b0a;
    transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}