.bth-waiver-bridge {
    display: flex;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.bth-waiver-bridge__panel {
    max-width: 520px;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.bth-waiver-bridge__heading {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.bth-waiver-bridge__message {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.bth-waiver-bridge__hint {
    color: #475569;
    margin-bottom: 1.75rem;
}

.bth-waiver-bridge__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bth-waiver-bridge__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bth-waiver-bridge__button--primary {
    background: #14532d;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 83, 45, 0.25);
}

.bth-waiver-bridge__button--primary:hover,
.bth-waiver-bridge__button--primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(20, 83, 45, 0.3);
}

.bth-waiver-bridge__button--secondary {
    background: #f1f5f9;
    color: #1f2937;
}

.bth-waiver-bridge__button--secondary:hover,
.bth-waiver-bridge__button--secondary:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.bth-waiver-bridge__status {
    color: #1f2937;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .bth-waiver-bridge__panel {
        padding: 2rem 1.5rem;
    }

    .bth-waiver-bridge__actions {
        flex-direction: column;
    }
}
