.loading,
.content,
.alert {
    opacity: 1;
    transition: all 0.2s ease;
}

.loading.-hidden,
.content.-hidden,
.alert.-hidden {
    opacity: 0;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.alert-error,
.alert-success {
    position: absolute;
    font-weight: 500;
    top: 40px;
    left: 50%;
    max-width: 400px;
    transform: translateX(-50%);
}

.overlay,
.alert-success,
.alert-error {
    display: none;
}

.overlay.-visible,
.alert-success.-visible,
.alert-error.-visible {
    display: flex;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

a h2 {
    text-decoration: underline;
}

h2 svg {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 3px;
}

.center {
    text-align: center !important;
}

.table {
        background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
    border-radius: 10px;
    padding: 3px;
}

table {
    width: 100%;
}

table td:last-of-type {
    text-align: right;
}

#billingModal .btn-link {
    position: relative;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
}