.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.modal-content {
    background: white;
    width: 90%;
    height: 90%;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column; /* Alinear elementos de arriba hacia abajo */
}

.dialog__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--grisbajo);
}

.dialog__header {
    margin: 0.5rem;
    border: 1px solid var(--grisbajo);
    padding: 0.5rem;
    text-align: left;
    border-radius: 5px;
}

.dialog__header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.dialog__legend {
    font-size: 1rem;
}

.dialog__body {
    margin: 0.5rem;
    border: 1px solid var(--grisbajo);
    padding: 0.5rem;
    text-align: left;
    border-radius: 5px;
    flex-grow: 1; /* Hacer que este elemento crezca para ocupar el espacio disponible */
    overflow-y: auto;
    overflow-x: hidden;
}

.dialog__footer {
    margin-top: auto; /* Empujar el footer hacia la parte inferior */
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    border-top: 1px solid var(--grisbajo);
}
