html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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;
}

.rz-header {
    background: var(--rz-primary) !important;
}

.page-header {
    margin-bottom: 1.5rem;
}

.form-section {
    margin-bottom: 1rem;
}

.computed-field {
    background-color: var(--rz-base-200);
    padding: 0.5rem 1rem;
    border-radius: var(--rz-border-radius);
    font-weight: 600;
}

.currency::after {
    content: " \20AC";
}

/* ── CV Drop Zone ─────────────────────────────────────────────── */
.cv-drop-zone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    border: 2px dashed var(--rz-border-disabled-color);
    border-radius: var(--rz-border-radius);
    background: var(--rz-base-100);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.cv-drop-zone:hover {
    border-color: var(--rz-primary-light);
    background: var(--rz-primary-lighter);
}

.cv-drop-zone--dragging {
    border-color: var(--rz-primary) !important;
    background: var(--rz-primary-lighter) !important;
    box-shadow: 0 0 0 3px rgba(var(--rz-primary-rgb), 0.15);
}
