/* ==============================================
   BUTTONS
   ============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    max-width: 100%;
    min-width: 0;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background-color: #2D6FA3;
    color: #E5E4E2;
}

.btn-primary:hover {
    background-color: #1E5280;
    color: #E5E4E2;
}

.btn-secondary-dark {
    background-color: #496580;
    color: #E5E4E2;
}

.btn-secondary-dark:hover {
    background-color: #395066;
    color: #E5E4E2;
}

.btn-secondary-light {
    background-color: #7393B3;
    color: #E5E4E2;
}

.btn-secondary-light:hover {
    background-color: #65809C;
    color: #E5E4E2;
}

.btn-secondary-a {
    background-color: #ACB6BD;
    color: #1A2530;
}

.btn-secondary-a:hover {
    background-color: #8A9399;
    color: #1A2530;
}

.btn-destructor {
    background-color: #a52a2a;
    color: #E5E4E2;
}

.btn-destructor:hover {
    background-color: #650A0B;
    color: #E5E4E2;
}

.btn-gold {
    background-color: #D4A017;
    color: #0F3350;
}

.btn-gold:hover {
    background-color: #B07D11;
    color: #0F3350;
}

.btn-light {
    background-color: #E5E4E2;
    color: #1A2530;
}

.btn-light:hover {
    background-color: #D3D3D3;
    color: #1A2530;
}
