/* delete confirm card */

.delete-card {
    max-width: 500px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: center;
}

.delete-warning {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
}

/* buttons container */
.delete-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* cancel button */
.cancel-button {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.cancel-button:hover {
    background: #dcdfe3;
}