
/* DESKTOP */

body.layout-desktop {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden; /* Empêche le body de scroller, c'est body-main qui s'en charge */
}

/* COMPOSANT D'INGESTION (DROPZONE) */

#body-upload {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fg-color-light);
	border-bottom: 1px solid var(--bordure, #e0e0e0);
	padding: 4px;
}
/* État actif lors du survol d'un fichier (Drag & Drop) */
#body-upload.drag-active {
	background-color: #e3f2fd; /* Feedback visuel (Bleu clair) */
	border: 2px dashed var(--fg-color-blue);
}
#body-upload .symbol {
	font-size: 24px;
	color: var(--fg-color-blue);
}
