/* Background */
body {
    background: linear-gradient(45deg, #DBEEFF 0%, #DED2FF 100%);
    min-height: 100vh;
    width: 100%;
}

/* Error Notifications */
#error-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 1000;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
