.fixed_header{
    table-layout: fixed;
    border-collapse: collapse;
    display:block; 
    width: 100%; 
    overflow: auto;
    height: 50vh;
}

#ds_custom_popup{
    display:block;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background:#53bb53;
    color:#fff;
    padding:15px 20px;
    border-radius:8px;
    z-index:9999;
    width: 270px;
    text-align: center;
    font-size: 18px;
}
.docusign_info {
    margin-right: 30px;
}
.userHistoryDesign .ajaxHTML {
    padding: 20px;
}
.actionChangeDate button.button.button-small {
    color: white;
    background-color: #2d97c7;
    border: none;
    margin-top: 5px;
}
body.page-template-shopify-form-template{
    background-color: transparent !important;
}
.gform_validation_errors,.gfield_validation_message{
    display: none !important;
}
div#validation_message_3_8 {
    display: block !important;
}
.shopifyAddProduct{
    padding: 20px;
}
.tingle-modal{
    background: rgba(0, 0, 0, 0.5) !important;
}
.radio__group input.input__TP.form-control {
    height: auto;
    width: 30px;
}
.listingPage a{
    color: #8ea0b6;
    /*     text-decoration: underline; */
}

label.radio__TP {
    display: flex;
    flex-wrap: wrap;
    width: 185px;
    justify-content: flex-start;
    align-items: center;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #555;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: auto;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.login-message{
    color: red;
    margin-top: 10px;
}
#login-loader{
    display: none;
}
.flexClass{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 20px;
}
.flexSpaceBetween {
    display: flex;
    justify-content: space-between;
}
#formMessage p{
    margin: 0 !important
}
/* Hide original radio input */
.time_slot_wrapper .radio__TP input[type="radio"] {
    display: none;
}

/* Style labels like buttons */
.time_slot_wrapper .radio__TP {
    display: inline-block;
    margin: 6px;
}

.time_slot_wrapper .radio__TP span {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Hover effect */
.time_slot_wrapper .radio__TP:hover span {
    border-color: #28a745;
    background: #f9f9f9;
}

/* Selected state */
.time_slot_wrapper .radio__TP input[type="radio"]:checked ~ * {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 10px 20px;
}
/* Loader overlay (will attach inside any container) */
.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
}

/* Spinner */
.loader-overlay .loader {
    border: 4px solid rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-overlay p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
/* END Loader overlay (will attach inside any container) */
.product-status-main {
    max-width: 170px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
/* title-tip down */
.title-tip[title]:hover {
    position: relative;
}
.title-tip[title]:hover:before {
    position: absolute;
    top: 100%;
    left: -25px;
    z-index: 99999;
    content: attr(title);
    margin-top: 0.5em;
    padding: 5px;
    width: 100px;    /* change it */
    overflow: hidden;
    word-wrap: break-word;
    font-size: 14px !important;
    color: #FFF;
    text-align: center;
    background-color: #222;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.title-tip[title]:hover:after {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 99999;
    content: '';
    margin-left: -0.125em;
    width: 0;
    height: 0;
    border: 0.25em dashed transparent;
    border-bottom: 0.25em solid #222;
    font-size: inherit;
}
/* Custom Popup */
.popupOverlay {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}

.popupContent {
    position: relative; /* important for button positioning */
    background: #fff;
    width: 400px;        /* you can change this (e.g., 600px or 300px) */
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: left;
}
.closePopup {
    position: absolute;
    top: -15px;   /* sits outside */
    right: -15px; /* sits outside */
    font-size: 22px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
}
.closePopup:hover {
    background: #f2f2f2;
}
/* END Custom Popup */
/*User Notes*/
.userNotesDesign #popup-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.userNotesDesign #popup-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.userNotesDesign #popup-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.userNotesDesign #popup-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.userNotesDesign .popup-body {
    flex: 1;
    display: flex;
    overflow: hidden;
    height: 60vh;
}

.userNotesDesign #notes-list-section {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    /* Fancy Scrollbar */
    scrollbar-width: thin;                 /* Firefox */
    scrollbar-color: #2e3192 #e5e7eb;     /* thumb color | track color */
}

#clientNotes,#clientApprove{
    overflow-y: auto;
    /* Fancy Scrollbar */
    scrollbar-width: thin;                 /* Firefox */
    scrollbar-color: #2e3192 #e5e7eb;     /* thumb color | track color */
}

/* Chrome, Edge, Safari */
.userNotesDesign #notes-list-section::-webkit-scrollbar {
    width: 8px;
}

.userNotesDesign #notes-list-section::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.userNotesDesign #notes-list-section::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2e3192, #5b48c7);
    border-radius: 10px;
}

.userNotesDesign #notes-list-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5b48c7, #2e3192);
}

.userNotesDesign .note {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid;
    margin-bottom: 1rem;
}

.userNotesDesign .note-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.userNotesDesign .note-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.userNotesDesign .note-meta span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.userNotesDesign .badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.userNotesDesign .note p {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.userNotesDesign .attachment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #2563eb;
    cursor: pointer;
}

.userNotesDesign .attachment span:last-child {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Badge Colors */
.userNotesDesign .blue {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #3b82f6;
}
.userNotesDesign .green {
    background: #dcfce7;
    color: #15803d;
    border-color: #22c55e;
}
.userNotesDesign .yellow {
    background: #fef9c3;
    color: #a16207;
    border-color: #eab308;
}
.userNotesDesign .gray {
    background: #f3f4f6;
    color: #4b5563;
    border-color: #9ca3af;
}

.userNotesDesign #add-note-section {
    width: 380px;
    border-left: 1px solid #e5e7eb;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.userNotesDesign #add-note-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.userNotesDesign .form-group {
    margin-bottom: 1rem;
}

.userNotesDesign label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.userNotesDesign select,
.userNotesDesign textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.875rem;
}

.userNotesDesign textarea {
    resize: none;
    height: 190px;
}

.userNotesDesign .upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.userNotesDesign .upload-box:hover {
    border-color: #2563eb;
}

.userNotesDesign #attached-file {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.userNotesDesign #attached-file .file-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.userNotesDesign #attached-file .file-row span {
    font-size: 0.875rem;
    color: #374151;
}

.userNotesDesign #attached-file button {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
}

.userNotesDesign .actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.userNotesDesign .btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.userNotesDesign .btn-cancel {
    background: #f3f4f6;
    color: #374151;
}

.userNotesDesign .btn-cancel:hover {
    background: #e5e7eb;
}

.userNotesDesign .btn-primary {
    background: #2563eb;
    color: #fff;
}

.userNotesDesign .btn-primary:hover {
    background: #1d4ed8;
}
.userNotesResponse{
    margin: 15px 0 10px 0;
}
.userNotesResponse p{
    margin:0;
}
/*END User Notes*/

/**/
.report-main-wrapper .tableWrapper{
    margin:0px -30px;
    padding:0px 30px;
}
.report-main-wrapper .listingHeader .report-filter-form{
    gap:10px;
}
.report-main-wrapper .dt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.report-main-wrapper .tableWrapper {
    border: none;
}
.report-main-wrapper .dt-search{
    order:-1;
}
.report-main-wrapper .dt-buttons {
    padding-top: 6px;
    margin-bottom: 10px;
}
.report-main-wrapper .dt-search label {
    display: none;
}
.report-main-wrapper .dt-search input {
    border-radius: 6px !important;
    border: 1px solid #e3e3e3 !important;
    color: #333333 !important;
    font-family: 'Poppins';
    font-size: 16px;
    height: 46px;
    padding: 4px 12px 4px 12px !important;
    width: 100%;
    outline: none;
    box-shadow: none;
    transition: 0.4s;
    margin:0px !important;
}
.report-main-wrapper .dt-search input:focus{
    border: 1px solid #2d97c7 !important;
}
.report-main-wrapper .dt-button{
    align-items: center !important;
    background-color: #ffffff !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    font-family: 'Poppins' !important;
    font-size: 14px !important;
    height: 35px !important;
    justify-content: center !important;
    line-height: 14px !important;
    padding: 4px 16px !important;
    position: relative !important;
    text-align: center !important;
    transition-duration: .3s !important;
    cursor: pointer !important;
    border: none !important;
    border-radius: 6px !important;
    background-image:unset !important;
    color:#ffffff !important;
}
.report-main-wrapper .dt-button span{
    position: relative;
    z-index:3;
    top:-1px;
}
.report-main-wrapper .dt-button:after,
.report-main-wrapper .dt-button:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition-duration: .3s;
    width: 100%;
    border-radius: 6px;
}
.report-main-wrapper .dt-button:before{
    background-color: #2d97c7;
}
.report-main-wrapper .dt-button:hover:before{
    background-color:#1b5b77;
}

.report-main-wrapper table.dataTable{
    border:1px solid #e3e3e3;
}
.report-main-wrapper .tableWrapper th:hover{
    outline:none !important;
}
.report-main-wrapper .tableWrapper th,
.report-main-wrapper .tableWrapper td{
    padding: 12px 15px !important;
    text-align: left !important;
    border-bottom: 1px solid #e3e3e3 !important;
}
.report-main-wrapper table.dataTable th.dt-type-numeric div.dt-column-header{
    flex-direction: row;
}
.report-main-wrapper table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
.report-main-wrapper table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before{
    bottom: 60%;
}
.report-main-wrapper .dt-column-order{
    top:2px;
}
.report-main-wrapper #report-model-labour_info {
    font-family: 'Poppins';
    margin-top:12px;
    padding-top:5px;
}
.report-main-wrapper div.dt-container .dt-paging{
    margin-top:12px;
}
.report-main-wrapper div.dt-container .dt-paging .dt-paging-button {
    width: auto;
    height: auto;
    min-width: 32px;
    min-height: unset;
    padding: 4px 11px;
    background-color: #efefef;
    border-radius: 200px;
    font-family: 'Poppins';
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.report-main-wrapper div.dt-container .dt-paging .dt-paging-button:hover{
    background:transparent;
    background-color:#dedede;
    border:none;
    color:#000000 !important;
}
.report-main-wrapper div.dt-container .dt-paging .dt-paging-button.current{
    background-color:#2d97c7 !important;
    border: none !important;
    color:#ffffff !important;
}
.report-main-wrapper div.dt-container .dt-paging .dt-paging-button.current:hover{
    color:#ffffff !important;
}
/**/