.reset-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-button:hover {
    background-color: #0e0b0b; 
    transform: scale(1.05); 
    box-shadow: 0 6px 12px rgba(30, 27, 25, 0.086); 
}

.reset-button:focus {
    outline: none; 
    box-shadow: 0 0 5px #000000, 0 0 10px rgba(0, 0, 0, 0.5); 
}

.reset-button:active {
    transform: scale(0.95); 
    box-shadow: 0 4px 6px rgba(4, 19, 35, 0.2); 
}
