/* CSS Document */
@media print {
	.imprimer {
        display: none !important;
    }
	.noprint{
		display: none !important;
	}
}

.imprimer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background-color: #F0F0F0;
    padding: 12px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
}

.imprimer a {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #2196f3; /* Material Blue */
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.imprimer a:hover {
    background-color: #1976d2;
}

.imprimer svg {
    width: 18px;
    height: 18px;
    fill: white;
}
/* BASE GÉNÉRALE */
body {
    font-family: 'Roboto', sans-serif;
    background: #f7f9fb;
    color: #2c3e50;
    margin: 0;
	padding-top: 120px !important;
}

h1, h2, h3 {
    font-weight: 500;
    margin-bottom: 16px;
	color: #294E7A;
}
.h1-title {
 	font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    background-color: #F9F9F9;
    padding: 14px 20px;
    border-left: 5px solid #0272E5;
    margin: 20px auto;
    max-width: 960px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
h3 { 
	margin-bottom: 10px;
	color: #0272E5;
}
a {
    color: #3498db;
    text-decoration: none !important;
}
a:hover {
    text-decoration: none !important;
}
small{
	color: #294E7A !important;
}

/* CONTAINER PRINCIPAL */
.container {
    margin: auto;
    padding: 0 20px;
	margin-bottom: 100px;
}

/*NAVIGATION ALPHABETHIQUE*/
.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 20px 0;
    padding: 10px 15px;
    background-color: #1f1f1f;
    border-radius: 8px;
}

.alpha-nav a {
    display: inline-block;
    color: #fff;
    background-color: #2c2c2c;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s;
}
.info {
  background-color: #e8f4ff; /* Bleu clair doux */
  border-left: 4px solid #2196f3; /* Bleu Material */
  color: #0b4f81; /* Texte bleu plus fonc */
  font-size: 0.85rem;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 4px;
  line-height: 1.4;
}
.copyable {
    position: relative;
    cursor: copy;
}

.copyable:hover {
    background-color: #f0f0f0;
    transition: background-color 0.3s;
}

.copyable:hover::after {
    content: "Cliquez pour copier";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    background-color: #2ecc71;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}
.alpha-nav a:hover {
    background-color: #D10202;
    color: #fff;
    transform: translateY(-1px);
}

/* SECTIONS - BLOCS DE FOND */
.vo-card {
    background: #F3F8FF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	margin-bottom: 10px;
}

/* GRILLE DES BLOCS INFO */
.vo-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.info-block {
    background: #fefefe;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 300px;
    min-width: 280px;
}

.info-block.full-width {
    flex: 1 1 100%;
	margin-bottom: 10px;
}

/* LIENS DOCUMENTS */
.doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
	justify-content: center; /* <-- C’est CE qu’il te faut */
}

.doc-btn {
    background: #ecf0f1;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s;
    border: 1px solid #bdc3c7;
	justify-content: center;
	text-align: center;
}
.doc-btn:hover {
    background: #d0e7f9;
}

/* --- Bouton flottant d'action --- */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease;
    z-index: 999;
}

/* --- Bouton flottant d'action BLEU --- */
.floating-action-btn-bleu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3498db;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease;
    z-index: 999;
}

.floating-action-btn-bleu:hover {
    background-color: #2980b9;
}


/* BOUTONS ACTIONS */
.action-buttons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
	justify-content: center; /* <-- C’est CE qu’il te faut */
}

.action-btn {
    background: #3498db;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    -webkit-appearance: none;
}
.action-btn:hover {
    background: #2980b9;
}
.action-btn.delete {
    background: #e74c3c;
}
.action-btn.delete:hover {
    background: #c0392b;
}

/* FORMULAIRES */
/* Style commun pour tous les select */
select {
    appearance: none;            /* Supprime le style natif */
    -webkit-appearance: none;    /* Safari */
    -moz-appearance: none;       /* Firefox */
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    padding-right: 36px;         /* espace pour la flèche */
    border-radius: 6px;
    font-size: 0.95rem;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;
    cursor: pointer;
    box-sizing: border-box;
	
	background-image:
	linear-gradient(45deg, transparent 50%, #002C63 50%),
	linear-gradient(135deg, #002C63 50%, transparent 50%);
	background-position:
	right 12px center,
	right 6px center;
	background-size: 6px 6px;
	background-repeat: no-repeat;

}

/* Fix iOS bug où les flèches persistent */
select:focus {
    outline: none;
    border-color: #2ecc71;
}

/* Supprime le fond bleu sur iOS focus */
select::-ms-expand {
    display: none;
}

.entretien-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.entretien-row select,
.entretien-row input[type="number"] {
  flex: 1;
  min-width: 120px;
  max-width: 30%;
}

@media (max-width: 768px) {
  .entretien-row select,
  .entretien-row input[type="number"] {
    max-width: 100%;
    flex: 100%;
  }
}





/*-----------------------------*/

label {
	font-weight: 600; 
	display: block; 
	margin-bottom: 5px;
	margin-top: 15px;
	color: #303030;
}
.container input, .container select {
	width: 100%;
	box-sizing: border-box;
	padding: 10px; 
	border: 1px solid #ccc;
	border-radius: 4px; 
	font-size: 15px;
	text-transform: uppercase;
}
/* PHOTOS */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
 	justify-content: center; /* <-- C’est CE qu’il te faut */
}
.photo-thumb {
    width: 180px;
    text-align: center;
}
.photo-thumb img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.photo-thumb img:hover {
    transform: scale(1.03);
}
.photo-thumb span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #555;
}

/*-----------------------------*/

/* LIGHTBOX */
#lightbox {
    position: fixed;
    display: none;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}
#close-button {
    position: absolute;
    top: 20px; right: 20px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
}


/*-----------------------------*/


/* PANORAMA POPUP */
#panorama-popup {
    position: fixed;
    display: none;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
#panorama-viewer {
    width: 100%;
    height: 100%;
}
.popup-content {
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.close-popup {
    position: absolute;
    top: 10px; right: 10px;
    background: black;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/*-----------------------------*/

/* MESSAGE "COPIÉ" */
#copiedMessage {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 10001;
    font-size: 14px;
    display: none;
}
.copy-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.copy-list li {
  background: #ecf0f1;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}
.copy-list li:hover {
  background-color: #d0e7f9;
}
.copy-item {
  display: inline-block;
}

/*-----------------------------*/
.hidden {
    display: none !important;
}
/* MODAL OVERLAY */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* MODAL WRAPPER */
.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    font-family: "Segoe UI", sans-serif;
}

/* MODAL HEADER */
.modal-content h2 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.modal-content h2::before {
    content: "📝";
    font-size: 1.6rem;
}

/* FORM FIELDS */
.modal-content label {
    display: block;
    margin: 1rem 0 0.3rem;
    font-weight: 500;
    color: #34495e;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content select {
    width: 90%;
    padding: 0.6rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border 0.2s;
}

.modal-content input:focus,
.modal-content select:focus {
    border-color: #2196f3;
    outline: none;
}

/* MODAL ACTIONS */
.modal-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-actions .action-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-actions .action-btn:hover {
    opacity: 0.9;
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.modal-footer {
    margin-top: 20px;
    text-align: right;
}
.modal-vo-card {
    background: #fff;
    padding: 30px;
    max-width: 500px;
	max-height: 90%;
    width: 95%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
	position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
	border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.modal-vo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-vo-header h3 {
    margin: 0;
    color: #D10202;
    font-size: 20px;
}

.modal-close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #888;
    font-weight: bold;
    transition: color 0.2s;
}
.modal-close-btn:hover {
    color: #D10202;
}

.modal-vo-body {
    font-size: 15px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Paragraphes dans le modal de dtail VO */


.modal-vo-body strong {
    color: #D10202;
    font-weight: 500;
    margin-right: 6px;
}
.modal-vo-body .vo-line {
    display: flex;
    align-items: center;
    background: #f4f6f8;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 1;
    font-size: 14px;
    color: #37474F;
    box-shadow: inset 0 0 0 1px #e0e0e0;
    transition: background 0.3s ease;
}

.modal-vo-body .vo-line:hover {
    background: #e3f2fd;
}

.vo-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #1976D2;
    min-width: 24px;
    text-align: center;
}
.modal-vo-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Animation Material */
@keyframes modalFadeIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* STYLES POUR LES BOUTONS */
.action-btn.save {
    background-color: #2ecc71;
    color: white;
}

.action-btn.delete {
    background-color: #e74c3c;
    color: white;
}

.action-btn.close {
    background-color: #bdc3c7;
    color: white;
}


/* UNIFORMISATION DES CHAMPS FORMULAIRES */

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: inherit;
    background-color: #fff;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.action-bc a {
	margin: 0 4px;
	text-decoration: none;
	color: #007bff;
	font-weight: 500;
}
.action-bc a:hover {
	text-decoration: underline;
}
.photo-mini {
	width: 80px;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
	cursor: pointer;
    transform-origin: center center;
    display: inline-block;
    will-change: transform;
}
.photo-mini:hover {
    transform: scale(1.8);
	z-index: 1000;
    position: relative;
}

.active-btn{
	background-color: #FD0000 !important;
}

/*---------*/
/*FORM*/
/*---------*/

.search-form {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    flex-grow: 1;
    max-width: 400px;
    background: #fff;
}

.search-input-wrapper input[type="text"] {
    border: none;
    padding: 10px 12px;
    flex: 1;
    font-size: 16px;
    outline: none;
}

.search-input-wrapper button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s ease;
}

.search-input-wrapper button:hover {
    background: #2980b9;
}
/* Filtres de recherche inline harmoniss Material Design */
.search-filters-grid {
    display: flex;
    justify-content: center; /* Alignement horizontal au centre */
    align-items: center;     /* Alignement vertical parfait */
    flex-wrap: wrap;
    width: 100%;             /* Force une ligne ddie pleine largeur */
    padding: 12px;
    margin: 20px auto;       /* Centre le bloc entier horizontalement si largeur limite */
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    gap: 10px;
}

.search-filters-grid .search-select {
    flex: 1;
    max-width: 250px;
    padding: 8px 12px;
    font-size: 14px;
    color: #424242;
    background-color: #fafafa;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-image: linear-gradient(45deg, transparent 50%, #757575 50%), 
                      linear-gradient(135deg, #757575 50%, transparent 50%);
    background-position: calc(100% - 15px) calc(50% - 2px),
                         calc(100% - 10px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.search-filters-grid .search-select:hover,
.search-filters-grid .search-select:focus {
    border-color: #1976D2;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(25,118,210,0.2);
}

.search-filters-grid .search-select option {
    font-size: 14px;
    color: #424242;
}

.clignote {
	color: red;
	font-weight: bold;
	animation: clignoter 1s infinite;
}
@keyframes clignoter {
	0%   { opacity: 1; }
	50%  { opacity: 0.3; }
	100% { opacity: 1; }
}
/* Responsive pour passage en colonne sur petit cran */
@media (max-width: 650px) {
    .search-filters-grid {
        flex-direction: column;
        gap: 8px;
    }

    .search-filters-grid .search-select {
        max-width: 100%;
        width: 100%;
    }
}

.reset-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.reset-btn:hover {
    background: #d35400;
}

.loader-message {
    text-align: center;
    color: #3498db;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 10px;
}

/*--------------------------------*/


/* Formulaire en grille responsive */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 650px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Colonne formulaire */
.form-col {
    display: flex;
    flex-direction: column;
}

/* Labels des champs */
.modal-content label {
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Inputs */
.modal-content input[type="text"],
.modal-content select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

/* Actions du bas */
.modal-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

/* Boutons */
.action-btn {
    padding: 10px 20px;
    border: none;
    background-color: #2ecc71;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.action-btn:hover {
    background-color: #27ae60;
}
.action-btn.delete {
    background-color: #e74c3c;
}
.action-btn.delete:hover {
    background-color: #c0392b;
}



/* TOAST */
.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
	top: 50%;
    transform: translateX(-50%);
    background: #323232;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

/* Apparition du toast */
.custom-toast.show {
    display: block;
    opacity: 1;
    bottom: 50px;
    pointer-events: auto;
}




/* RÉPONSIVE */
@media screen and (max-width: 650px) {
    .vo-info-grid {
        flex-direction: column;
    }

    .photo-thumb {
        width: 100%;
    }

    .doc-links {
        flex-direction: column;
    }
	.alpha-nav {
        padding: 10px 5px;
    }
    .alpha-nav a {
        font-size: 12px;
        padding: 6px 10px;
    }
}
.vo-api-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.vo-api-grid p {
    margin: 0;
    padding: 8px;
    background: #f4f4f4;
    border-radius: 6px;
    font-size: 14px;
}

.grise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px 0;
    font-size: 15px;
}

.grise-grid div {
    background: #f4f4f4;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    font-family: "Segoe UI", sans-serif;
}

.grise-total {
    grid-column: 1 / -1;
    font-size: 17px;
    color: #2ecc71;
    font-weight: bold;
    border-top: 2px solid #2ecc71;
    margin-top: 10px;
    padding-top: 10px;
}

.muted {
    color: #999;
    font-size: 0.85rem;
    display: inline-block;
}
/* Style pour un span explicatif */
.aide {
  font-size: 0.9em; /* Taille lgrement plus petite pour rester discrte */
  color: #555; /* Gris sobre pour ne pas trop attirer lattention */
  background-color: #f8f8f8; /* Fond lgrement contrast */
  border: 1px solid #ddd; /* Bordure fine et claire */
  border-radius: 4px; /* Coins lgrement arrondis */
  padding: 4px 8px; /* Un peu despace autour du texte */
  margin-left: 8px; /* Lgre sparation  gauche du texte principal */
  display: inline-block; /* Garde lapparence dun span mais permet un padding plus gnreux */
  font-family: inherit; /* Conserve la police du thme gnral */
  cursor: help; /* Indique que cest une information supplmentaire */
}

.aide:hover {
  border-color: #bbb; /* Accentue lgrement la bordure au survol */
  background-color: #f0f0f0; /* Change subtilement le fond au survol */
}
	dialog {
	  border: none;
	  border-radius: 12px;
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	  padding: 20px 24px;
	  max-width: 420px;
	  width: 90%;
	  font-family: "Segoe UI", sans-serif;
	  background: #fff;
	  animation: fadeInDialog 0.25s ease-out;
	  transition: all 0.2s ease-in-out;
	}

	dialog::backdrop {
	  background: rgba(0, 0, 0, 0.4);
	  backdrop-filter: blur(2px);
	}
	@keyframes fadeInDialog {
	  from {
		opacity: 0;
		transform: scale(0.95);
	  }
	  to {
		opacity: 1;
		transform: scale(1);
	  }
	}