/* Styles spécifiques à la page de demande de suppression */

/* --- Layout Web (Défaut) --- */
.delete-info {
    margin-bottom: 25px;
    line-height: 1.6;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-warning svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Style des formulaires (Commun Web & Android) */
.delete-request-card form,
body.android-embed form {
    padding: 15px;
    border-radius: 12px;
}

/* Sur le Web, on peut vouloir un fond léger ou rien pour le form si la carte est déjà blanche */
.delete-request-card form {
    background: #f9f9f9;
}

/* Sur Android, fond spécifique */
body.android-embed form {
    background: rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

/* Labels */
.delete-request-card label,
body.android-embed label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Inputs & Textarea */
.delete-request-card input,
.delete-request-card textarea,
body.android-embed input,
body.android-embed textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    color: #333;
    font-family: inherit;
    resize: vertical;
}

/* Boutons */
.delete-request-card button,
body.android-embed button {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.delete-request-card button:hover,
body.android-embed button:hover {
    background-color: #c9302c;
}

.delete-fallback {
    margin-top: 30px;
    text-align: center;
    opacity: 0.7;
}