.content {
    max-width: 800px;
    margin: 0 auto;
}

.overlay {
    display: none;
}

.overlay.-visible {
    display: block;
}

.alert {
    display: flex !important;
    position: fixed;
    font-weight: 500;
    top: 20px;
    left: 50%;
    width: auto;
    max-width: 80%;
    opacity: 0;
    text-align: center;
    transform: scale(0.90) translate(-50%, -5px);
    transform-origin: 0 100%;
    transition: all 0.15s ease;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 768px) {
    .alert {
        width: 100%;
        max-width: 80%;
    }
}

.alert.-visible {
    opacity: 1;
    transform: scale(1) translate(-50%, 0);
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

p.small {
    font-size: 14px;
    margin-top: 3px;
    opacity: 0.8;
}

a h2 {
    text-decoration: underline;
}

h2 svg {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 3px;
}

table {
    width: 100%;
}

table td:last-of-type {
    text-align: right;
}

.table {
    background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
    border-radius: 10px;
    padding: 3px;
}

.center {
    text-align: center !important;
}

#billingModal .btn-link {
    position: relative;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
}