dialog {
    min-width:600px;
    max-width: 95%;
    max-height: 90vh;
    padding: 0;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

dialog .content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 90vh;
}

dialog .header,
dialog .footer {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

dialog .footer {
    border-top: 1px solid #dee2e6;
    border-bottom: none;
}

dialog .body {
   /* max-height: 60vh;*/
    padding: 1rem;
    overflow-y: auto;
    flex-grow: 1;
}

dialog .title {
    margin: 0;
    font-size: 1.25rem;
}

dialog .close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

dialog .close-topright {
    position: absolute;
    right: 30px;
    top: 16px;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
