.content {
    padding-top: 1.1rem;
    margin-right: 1.1rem;
    margin-left: 1.1rem;
}

body {
    margin: 0;
    background-color: rgb(241, 242, 244);
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

code {
    color: #c02d76;
}

.spinner-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.font-semibold {
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.h-1 {
    height: 4px;
}

.w-4 {
    width: 16px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.gap-0\.5 {
    gap: 0.125rem;
}

.text-\[12px\] {
    font-size: 12px;
}

.text-foreground {
    color: #2b2b2b;
}

.section {
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border, #e2e4e8);
    background-color: var(--color-surface, #ffffff);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.section-header h2 {
    margin-bottom: 0px;
}

.section-header p {
    margin-top: 0px;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}