*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

main.site-main {
    max-width: 100%;
    margin: 20px auto;
    padding: calc(var(--site-header-height, 72px) + var(--site-disclaimer-banner-height, 52px) + 20px) 20px 20px;
    background-color: #000000;
    border: none;
    border-radius: 4px;
}

@media (max-width: 640px) {
    main.site-main {
        margin: 12px auto;
        padding: calc(var(--site-header-height, 56px) + var(--site-disclaimer-banner-height, 72px) + 12px) 12px 12px;
    }
}

.django-messages {
    max-width: 960px;
    margin: 0 auto 12px;
    padding: 0 12px;
    box-sizing: border-box;
}
.django-messages__item {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.92rem;
}
.django-messages__item--success {
    background: #064e3b;
    color: #d1fae5;
}
.django-messages__item--error {
    background: #7f1d1d;
    color: #fecaca;
}
.django-messages__item--warning {
    background: #713f12;
    color: #fde68a;
}
.django-messages__item--info {
    background: #0c4a6e;
    color: #bae6fd;
}
