.error-message {
    background-color: var(--critical-light);
    color: var(--standard-text);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-family: "Lexend Deca", sans-serif;
}

.dialog-overlay {
    position: fixed;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.dialog-content {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.dialog-content h3 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--standard-h2-text);
    font-family: "Lexend Deca", sans-serif;
}

.dialog-content p {
    margin: 0 0 24px;
    color: var(--standard-h2-text);
    font-family: "Lexend Deca", sans-serif;
}

/* Disclaimer Dialog specific styles */
.disclaimer-dialog {
    max-width: 500px;
    width: 90%;
}

.disclaimer-dialog h3 {
    color: #dc2626;
    margin-bottom: 20px;
}

.disclaimer-dialog p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.disclaimer-dialog .dialog-actions {
    justify-content: center;
    margin-top: 24px;
}