/*dialog::backdrop {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

dialog {
    width: 80%;
    max-height: 80vh;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
                0 6px 20px rgba(0, 0, 0, 0.19);
    overflow: hidden;
}

.dialog-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}
*/

dialog {
	border: none;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
}
dialog::backdrop {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(2px);
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) { dialog { width:70%;height:60%; } }
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) { dialog { width:70%;height:60%; } }
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) { dialog { width:60%;height:60%; } }
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) { dialog { width:60%;height:60%; } }
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) { dialog { width:50%;height:60%; } }