

.modal-standard {
    max-width: 800px !important;
    width: 800px !important;
}

.modal-standard .modal-content {
    height: 700px !important;
    max-height: 700px !important;
    display: flex;
    flex-direction: column;
}

.modal-standard .modal-header {
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bs-modal-border-color, #dee2e6);
}

.modal-standard .modal-body {
    flex: 1 1 auto;
    padding: 1.25rem;
    overflow-y: auto;
    max-height: calc(700px - 60px - 60px); 
}

.modal-standard .modal-footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--bs-modal-border-color, #dee2e6);
    position: sticky;
    bottom: 0;
    background-color: white;
    z-index: 10;
}


@media (max-width: 900px) {
    .modal-standard {
        max-width: 95vw !important;
        width: 95vw !important;
        margin: 0.5rem;
    }

    .modal-standard .modal-content {
        height: 90vh !important;
        max-height: 90vh !important;
    }

    .modal-standard .modal-body {
        max-height: calc(90vh - 60px - 60px);
    }
}


.modal-standard {
    margin: 1.75rem auto;
}