/* =========================================
   Button Variants
   ========================================= */

/* Base button */
button, .btn {
    display: inline-flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

/* Primary */
.btn-primary {
    background-color: #003f91;
    color: white;
}

    .btn-primary:hover {
        background-color: #004fb5;
        text-decoration: none;
    }

/* Secondary */
.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

    .btn-secondary:hover {
        background-color: #ccc;
        text-decoration: none;
    }

/* Danger */
.btn-danger {
    background-color: #d32f2f;
    color: white !important;
}

    .btn-danger:hover {
        background-color: #b71c1c;
        text-decoration: none;
    }

/* Disabled */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
