/* ==========================================================================
   Status Messages
   ========================================================================== */

.status-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: var(--border-radius);
    position: relative;
}

.status-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.error-list {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.error-item {
    margin-bottom: 5px;
}

.clickable-error {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.clickable-error:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.error-intro {
    margin-bottom: 10px;
    font-weight: bold;
}
