﻿/* Floating container (consistent spacing with your layout) */
.litssa-floating-action {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    backdrop-filter: blur(6px);
}

/* Base button style (reusable across system) */
.litssa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Cancel button variant (aligned with gov green theme) */
.litssa-btn-cancel {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

    /* Hover effect (subtle, professional) */
    .litssa-btn-cancel:hover {
        background: linear-gradient(135deg, #388E3C, #145A1A);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    /* Active (click feel) */
    .litssa-btn-cancel:active {
        transform: scale(0.97);
    }

/* Icon styling to match your headers/icons */
.litssa-btn i {
    font-size: 18px;
    line-height: 1;
}
