.floating-reset-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #ef4444; /* red */
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform .1s ease, box-shadow .2s ease, background .2s ease;
}

.floating-reset-btn i {
    font-size: 16px;
}

.floating-reset-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    background: #dc2626;
}

.floating-reset-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

/* Hide label on very small screens to keep it compact */
@media (max-width: 480px) {
    .floating-reset-btn {
        padding: 10px;
        gap: 0;
    }
    .floating-reset-btn__label {
        display: none;
    }
}
