.floating-theme-button {
    position: fixed;
    top: 50%;                 /* Center vertically */
    right: 20px;              /* Stay on the right */
    transform: translateY(-50%); /* Offset to perfect vertical center */
    
    background-color: #7c4dff;
    color: white;
    font-weight: bold;
    border: none;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-theme-button:hover {
    transform: scale(1.1);
    background-color: #6b42e0;
}

.floating-theme-button:active {
    transform: scale(0.95);
    background-color: #5e39c7;
}

.floating-theme-button i {
    font-size: 1.5rem;
    color: #ffc107;
}