.error-message {
    color: #ff6b6b;
    background-color: var(--bg-tertiary);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ff6b6b;
}

.error-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.error-actions button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.error-actions button:first-child {
    background-color: #2ecc71;
    color: white;
}

.error-actions button:last-child {
    background-color: #e74c3c;
    color: white;
}

[data-theme="dark"] .error-message {
    background-color: rgba(255, 107, 107, 0.1);
}
