/* css/delete.css */

.delete-confirm {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.warning-box strong {
    color: #533f03;
}

.delete-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #c82333;
}