﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


/* None of this CSS is required for the gallery and lightbox to function. */

/* --- BEGIN: custom styling demo --- */
* {
    transition: 0.3s;
}

#gallery.custom {
    padding: 0 15px;
}

    #gallery.custom img {
        display: block;
        margin: 15px 0;
        border-radius: 300px 30px 300px 300px;
    }

        #gallery.custom img:hover {
            border-radius: 30px 90px 30px 30px;
        }

#CarouselImageModal.custom .modal-content {
    background: none;
    border: none;
}

#CarouselImageModal.custom .modal-header {
    border: none;
}

    #CarouselImageModal.custom .modal-header button {
        background: none;
        border-radius: 100px 100px 0 0;
        padding: 5px 10px;
        opacity: 1;
        position: relative;
        top: 3px;
        border: solid 2px white;
    }

        #CarouselImageModal.custom .modal-header button:hover {
            top: 3px;
        }

    #CarouselImageModal.custom .modal-header span {
        color: white;
    }

#CarouselImageModal.custom .modal-body {
    padding: 0;
    border: none;
    position: relative;
}

    #CarouselImageModal.custom .modal-body::before,
    #CarouselImageModal.custom .modal-body::after {
        content: '';
        height: 100px;
        width: 100px;
        display: block;
        position: absolute;
        background: white;
        border-radius: 3px 30px;
    }

    #CarouselImageModal.custom .modal-body::before {
        top: -15px;
        left: -15px;
    }

    #CarouselImageModal.custom .modal-body::after {
        bottom: -15px;
        right: -15px;
        z-index: -1;
    }

#CarouselImageModal.custom .modal-footer {
    border: none;
    margin-top: 40px;
}

    #CarouselImageModal.custom .modal-footer .btn {
        margin: auto;
        border: solid 2px white;
        background: none;
        text-transform: uppercase;
        font-size: 0.8em;
        letter-spacing: 0.1em;
        font-weight: bold;
        padding: 0.2em 0.7em;
    }

        #CarouselImageModal.custom .modal-footer .btn:hover {
            background: white;
            color: black;
        }

#CarouselImageModal.custom .carousel-control-prev,
#CarouselImageModal.custom .carousel-control-next {
    font-size: 2em;
    top: auto;
    opacity: 1;
    bottom: -52px;
}

#CarouselImageModal.custom .carousel-control-prev-icon,
#CarouselImageModal.custom .carousel-control-next-icon {
    height: 30px;
    width: 30px;
}

#CarouselImageModal.custom .carousel-control-prev {
    left: -90px;
}

#CarouselImageModal.custom .carousel-control-next {
    right: -90px;
}

#CarouselImageModal.custom .carousel-indicators {
    bottom: -30px;
}

    #CarouselImageModal.custom .carousel-indicators li {
        height: 10px;
        border-radius: 100px;
        background: none;
        border: solid 2px white;
    }

        #CarouselImageModal.custom .carousel-indicators li:hover {
            background: white;
        }

    #CarouselImageModal.custom .carousel-indicators .active {
        background: white;
    }

/* --- END: custom styling demo --- */

/* --- BEGIN: style switch --- */
/* This is just styling for the style toggle switch. Mostly copied from https://www.w3schools.com/howto/howto_css_switch.asp */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.switch-wrap {
    text-align: center;
    background-color: #b1fbc1;
    padding: 30px;
    border-radius: 3px;
    margin: 30px 0 0;
}

.switch-wrap {
    text-align: center;
    background-color: #b1fbc1;
    padding: 30px;
    border-radius: 3px;
    margin: 30px 0 0;
}
/* --- END: style switch --- */

/* --- BEGIN: crop images --- */
/* Optional CSS for cropping images that aren't all the same size. */

/* Use Bootstrap breakpoints for consistency. */
@media (max-width: 575px) {
    #gallery img {
        height: auto;
        width: 100%;
    }

    .carousel-item img {
        height: auto;
        max-height: 1080px;
        width: 100%;
        object-fit: contain;
    }
}

@media (min-width: 576px) {
    #gallery img {
        height: 75vw;
    }

    .carousel-item img {
        height: 60vw;
        max-height: 1080px;
    }
}

@media (min-width: 768px) {
    #gallery img {
        height: 35vw;
    }

    .carousel-item img {
        height: 768px;
        max-height: 1080px;
    }
}

@media (min-width: 992px) {
    #gallery img {
        height: 18vw;
    }

    .carousel-item img {
        height: 768px;
        max-height: 1080px;
    }
}
/* --- END: crop images --- */

ul {
    list-style-type: none;
}

li {
    display: inline-block;
}

input[type="checkbox"][id^="cb"] {
    display: none;
}

.labelDownloadPhotoModal {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    /*-khtml-user-select: none;*/
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
}

    .labelDownloadPhotoModal::before {
        background-color: white;
        color: white;
        content: " ";
        display: block;
        border-radius: 50%;
        border: 1px solid grey;
        position: absolute;
        top: -5px;
        left: -5px;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 28px;
        transition-duration: 0.4s;
        transform: scale(0);
    }

    .labelDownloadPhotoModal .imgDownloadPhotoModal {
        height: 100px;
        width: 100px;
        transition-duration: 0.2s;
        transform-origin: 50% 50%;
    }

:checked + .labelDownloadPhotoModal {
    border-color: #ddd;
}

    :checked + .labelDownloadPhotoModal::before {
        content: "✓";
        background-color: grey;
        transform: scale(1);
    }

    :checked + .labelDownloadPhotoModal .imgDownloadPhotoModal {
        transform: scale(0.9);
        box-shadow: 0 0 5px #333;
        z-index: -1;
    }

/*Define a custom class for modal dialog with 3/4 width and centered position*/
#DownloadPhotoPopUpModal .modal-dialog,
#DownloadPhotoPopUpModalNew .modal-dialog,
#modalDownloadPhotoList .modal-dialog,
#ImageGalleryPopUpModal .modal-dialog,
#ImageGalleryUploadDSPopUpModal .modal-dialog,
#modalImageGallery .modal-dialog,
#CarouselImageModal .modal-dialog {
    width: 75%; /*3/4 of the screen width */
    max-width: 75%; /*Ensure the modal doesn't exceed this width */
    margin: auto; /*Center the modal horizontally */
    top: 50%; /*Position the modal vertically at 50% from the top */
    transform: translateY(-50%); /*Adjust vertically to center */
}

#attachmentUploaderModal {
    width: 50%; /*3/4 of the screen width */
    max-width: 70%; /*Ensure the modal doesn't exceed this width */
    margin: auto; /*Center the modal horizontally */
    top: 50%; /*Position the modal vertically at 50% from the top */
    left: 5%;
    transform: translateY(-50%); /*Adjust vertically to center */
}

#CarouselImageModal .modal-dialog .carousel-item img {
    height: auto;
    width: auto;
    object-fit: contain; /* Maintain aspect ratio without stretching */
}

.modal-scrollable-body {
    max-height: calc(75vh - 120px); /* Set the maximum height of the modal body */
    overflow-y: auto; /* Enable vertical scrolling if content exceeds max-height */
}

.logo {
    height: 100px;
    width: 100%;
}

.labelImageGalleryModal {
    border: 1px solid #fff;
    /*padding: 10px;*/
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    /*-khtml-user-select: none;*/
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

    .labelImageGalleryModal::before {
        background-color: white;
        color: white;
        content: " ";
        display: block;
        border-radius: 50%;
        border: 1px solid grey;
        position: absolute;
        top: -5px;
        left: -5px;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 28px;
        transition-duration: 0.4s;
        transform: scale(0);
    }

    .labelImageGalleryModal .imgImageGalleryModal {
        height: 200px;
        width: 200px;
        transition-duration: 0.2s;
        transform-origin: 50% 50%;
    }

.enlarge-image {
    position: fixed;
    display: none;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    z-index: 1000; /* Ensure it appears above other content */
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.page-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
}

.page-title-icon {
    display: inline-flex;
    vertical-align: central;
    font-size: 1.75rem;
    color: #007bff;
    margin-right: 10px;
}

.module-header-text {
    line-height: 10px;
}

.attachment-list {
    list-style-type: none;
    padding: 0;
}

    .attachment-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .attachment-list button {
        margin-left: 10px;
    }

.popup-action {
    display: none;
    position: absolute;
    z-index: 10;
}

.table-hover tbody tr:hover .popup-action {
    display: block;
}

#trucking-traffic-chart-legend {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 20px;
    margin-right: 20px;
}

table {
    table-layout: auto;
    width: 100%;
    border-collapse: collapse;
}

    table td, table th {
        border: 1px solid #ddd;
        padding: 8px;
        white-space: nowrap; /*Prevent text from wrapping */
        overflow: hidden; /*Hide the overflow text */
        text-overflow: ellipsis; /*Add ellipsis (...) for overflowing text */
    }

    table th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: #f2f2f2;
        font-weight: bold;
    }

#CFSCodes, #portCodes, #searchVesselInfoExport_2, #searchVesselInfoExport, #pocAddresList,
#searchVesselInfo, #searchVesselInfo_2, #coLoadCodes, #containerSizes, #addressSentTos, #statusCodes, #containerTypes, #personInCharges,
#vendorCodes, #slOpenJobReason, #slCompletedJobs, #slModes, #locationCodes,
#searchVesselInfo_LCL, #searchVesselInfo_LCL_2, #slWarehouse, #slCollectFromAddress, #slDeliverToAddress, #slArrivalNotice,
#slBillOfLading, #slThirdPartyLogistic, #slPackageType, #slClosedJobType,
#slLocationCodes, #slJobTypeCodes, #slTerms, #slUnit,
#searchVesselInfoImport_2, #searchVesselInfoImport, #slWarehouse, #slShipper, #slStatusType, #slFreightForwarder, #slPlaceOfRelease, #slPPCLT, #slTerm,
#searchVesselInfoExportWL, #searchVesselInfoExportWL_2, #slInvoicedFCLLocationName, #searchVesselInfoExportRDC, #searchVesselInfoExportRDC_2, #slInventoryTypeCodes,
#slInventoryItems, #slPackageTypeCodes, #slplantCodes, #slInvStockFromAddress, #slInvStockToAddress, #slInvStockReleaseFromAddress, #slInvStockReleaseToAddress,
#slCargoTypes, #searchVesselInfoImportRDC, #searchVesselInfoImportRDC_2, #searchVesselInfoImportCEVA_2, #searchVesselInfoImportCEVA, #searchVesselInfoFWL, #searchVesselInfoFWL_2,
#searchVesselInfoFRDC, #searchVesselInfoFRDC_2, #searchVesselInfoImportWL, #searchVesselInfoImportWL_2, #searchVesselInfoImportRDC, #searchVesselInfoImportRDC_2 {
    font-weight: bold;
    color: black;
}

.full-width-link {
    display: flex; /* Allows child elements to be positioned properly */
    justify-content: space-between; /* Spaces out the title and arrow */
    align-items: center; /* Aligns items in the center vertically */
    width: 100%; /* Takes up the full width */
    padding: 10px; /* Adds some padding for better appearance */
    background-color: #f8f9fa; /* Background color similar to a form field */
    border: 1px solid #ddd; /* Border to define the area */
    text-decoration: none; /* Removes the default link underline */
    color: #000; /* Text color */
    cursor: pointer; /* Changes cursor to pointer on hover */
}

    .full-width-link:hover {
        background-color: #e2e6ea; /* Changes background color on hover */
    }

/* Hide the default checkbox */
/* Hide the default checkbox */
input.dataTableCheckBox[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: white; /* Change this to your desired color */
    border-radius: 1px;
    border: 2px solid grey; /* Change the color and width as needed */
}

    /* Style the indicator (checkmark) */
    .custom-checkbox:after {
        content: "";
        position: absolute;
        display: none;
        left: 5px;
        top: 2px;
        width: 6px;
        height: 12px;
        border: solid red;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

/* Show the checkmark when checked */
input.dataTableCheckBox[type="checkbox"]:checked + .custom-checkbox:after {
    display: block;
}

/* Style the disabled checkbox */
input.dataTableCheckBox[type="checkbox"]:disabled + .custom-checkbox {
    /*background-color: gainsboro;*/
    cursor: not-allowed;
}

#modalSubmitJobCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 800px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobFCLCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobLCLCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobPermitCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}


#modalSubmitJobImportCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobImportPrioritize .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobFCLWLCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobImportWLCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobImportWLPrioritize .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobImportRDCCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobImportRDCPrioritize .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

#modalSubmitJobFCLRDCCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}


#modalSubmitJobLCLRDCCompletion .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}

.fixed-header th {
    position: sticky;
    top: 0;
    background: #f8f9fa; /* Bootstrap's .table-light bg */
    z-index: 2;
    /* Optional: Add border if needed for better looks */
}


#modalSubmitJobClosure .modal-content {
    width: 50%; /* Set width to 50% of the viewport width */
    max-width: 1000px; /* Ensure it doesn't exceed 800px */
    position: fixed; /* Use fixed positioning to center it relative to the viewport */
    top: 50%; /* Position it at the middle of the screen */
    left: 50%; /* Position it at the middle of the screen */
    transform: translate(-50%, -50%); /* Adjust the positioning to perfectly center the modal */
    z-index: 1050; /* Ensure it appears above other elements */
    /*background-color: white;*/ /* Ensure the modal content has a background */
    /*padding: 20px;*/ /* Optional padding */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/ /* Optional shadow for better visibility */
    /*border-radius: 5px;*/ /* Optional border radius */
}