/* Custom modal sizes for Purchase Order */
.modal-dialog.modal-full {
    max-width: 95vw !important;
    width: 95vw !important;
}

.modal-dialog.modal-xxl {
    max-width: 90vw !important;
    width: 90vw !important;
}

.modal-dialog.modal-xxxl {
    max-width: 50vw !important;
    width: 50vw !important;
}

/* Ensure modal content fits properly */
.modal-dialog.modal-full .modal-content,
.modal-dialog.modal-xxl .modal-content,
.modal-dialog.modal-xxxl .modal-content {
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-dialog.modal-full,
    .modal-dialog.modal-xxl,
    .modal-dialog.modal-xxxl {
        max-width: 98vw !important;
        width: 98vw !important;
        margin: 1vh auto;
    }
}

@media (max-width: 576px) {
    .modal-dialog.modal-full,
    .modal-dialog.modal-xxl,
    .modal-dialog.modal-xxxl {
        max-width: 100vw !important;
        width: 100vw !important;
        margin: 0;
        height: 100vh;
    }
    
    .modal-dialog.modal-full .modal-content,
    .modal-dialog.modal-xxl .modal-content,
    .modal-dialog.modal-xxxl .modal-content {
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}
