 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Work Sans', sans-serif;
 }

 .mj-body {
     background-color: #f8fafc;
     color: #121416;
     min-height: 100vh;
 }

 /* Header Styles */
 .mj-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 40px;
     border-bottom: 1px solid #f1f2f4;
     background: white;
     position: sticky;
     top: 0;
     z-index: 100;
 }

 .mj-logo-container {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .mj-logo-icon {
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #121416;
 }

 .mj-logo-icon svg {
     width: 100%;
     height: 100%;
 }

 .mj-logo-text {
     font-size: 18px;
     font-weight: 700;
     line-height: 1.2;
 }

 .mj-nav-links {
     display: flex;
     gap: 32px;
     margin-left: 40px;
 }

 .mj-nav-link {
     color: #121416;
     font-size: 14px;
     font-weight: 500;
     text-decoration: none;
     transition: color 0.2s;
 }

 .mj-nav-link:hover {
     color: #3498db;
 }

 .mj-header-right {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .mj-help-btn {
     background: #f1f2f4;
     border: none;
     border-radius: 12px;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background 0.2s;
 }

 .mj-help-btn:hover {
     background: #e2e4e8;
 }

 .mj-user-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-size: cover;
     background-position: center;
     background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="20" fill="%233498db"/><circle cx="50" cy="100" r="40" fill="%233498db"/></svg>');
 }

 /* Main Content Styles */
 .mj-main-container {
     max-width: 1080px;
     margin: 0 auto;
     padding: 20px 20px;
 }

 .mj-main-container .mj-form-section br {
     display: none;
 }

.mj-form-container {
    background: transparent;
    overflow-y: auto;
    margin: auto;
    height: 95vh;
    width: 100%;
    padding: 50px 0px;
}

.mj-form-inner-section {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    background-color: #ffff;
    border-radius: 20px;
    padding: 20px 20px;
}

 .mj-form-header {
     padding: 10px;
     border-bottom: 1px solid #f1f2f4;
 }

 .mj-form-title {
     font-size: 25px;
     font-weight: 600;
     line-height: 1.2;
     color: #121416;
 }



 .mj-section-title {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 16px;
     color: #121416;
 }

 .mj-input-group {
     margin-bottom: 20px;
     max-width: 480px;
 }

 .mj-input-label {
     font-size: 16px;
     font-weight: 500;
     color: #121416;
 }

.mj-form-input, .mj-last-input-section-input select {
    width: 100%;
    padding: 8px 20px;
    font-size: 16px;
    border: 1px solid #dde0e3;
    border-radius: 2px;
    background: white;
    transition: border-color 0.2s;
}
 .mj-form-input:focus {
     outline: none;
     border-color: #3498db;
 }

 .mj-form-input::placeholder {
     color: #6a7581;
 }

 .mj-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 24px;
 }

 .mj-grid-item {
     flex: 1;
     min-width: 200px;
 }

 .mj-upload-area {
     border: 2px dashed #dde0e3;
     border-radius: 12px;
     padding: 40px 20px;
     text-align: center;
     background: #fafbfc;
     transition: border-color 0.2s;
 }

 .mj-upload-area:hover {
     border-color: #3498db;
 }

 .mj-upload-icon {
     font-size: 40px;
     color: #3498db;
     margin-bottom: 16px;
 }

 .mj-upload-title {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 8px;
     color: #121416;
 }

 .mj-upload-desc {
     font-size: 14px;
     color: #6a7581;
     margin-bottom: 20px;
 }

 .mj-upload-btn {
     background: #f1f2f4;
     border: none;
     border-radius: 12px;
     padding: 10px 20px;
     font-size: 14px;
     font-weight: 700;
     color: #121416;
     cursor: pointer;
     transition: background 0.2s;
 }

 .mj-upload-btn:hover {
     background: #e2e4e8;
 }

 .mj-status-info {
     font-size: 16px;
     color: #121416;
     margin-bottom: 8px;
 }

 .mj-status-value {
     font-weight: 600;
     color: #27ae60;
 }

 .mj-fee-value {
     font-weight: 600;
     color: #e74c3c;
 }

 .mj-form-actions {
     padding: 24px 32px;
     display: flex;
     justify-content: flex-end;
 }

 .mj-submit-btn {
     background: #3498db;
     border: none;
     border-radius: 12px;
     padding: 12px 24px;
     font-size: 16px;
     font-weight: 700;
     color: white;
     cursor: pointer;
     transition: background 0.2s;
 }

 .mj-submit-btn:hover {
     background: #2980b9;
 }

 .mj-notification {
     position: fixed;
     top: 20px;
     right: 20px;
     padding: 15px 25px;
     border-radius: 8px;
     background: #27ae60;
     color: white;
     font-weight: 500;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transform: translateX(150%);
     transition: transform 0.3s ease-out;
     z-index: 1000;
 }

 .mj-notification.show {
     transform: translateX(0);
 }

 @media (max-width: 768px) {
     .mj-header {
         padding: 12px 20px;
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
     }

     .mj-nav-links {
         margin-left: 0;
         gap: 15px;
         flex-wrap: wrap;
     }

     .mj-header-right {
         align-self: flex-end;
     }

     .mj-main-container {
         padding: 20px 15px;
     }

     .mj-grid {
         flex-direction: column;
     }
 }


 #mj-photo-preview {
     margin-top: 10px;
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .mj-photo-box,.mj-preview-image  {
     position: relative;
     width: 100px;
     height: 100px;
 }

 .mj-photo-box img ,.mj-preview-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 6px;
     border: 1px solid #ccc;
 }

 .mj-remove-btn,.mj-remove-photo {
     position: absolute;
     top: -8px;
     right: -8px;
     background: #e74c3c;
     color: white;
     border: none;
     border-radius: 50%;
     font-size: 14px;
     width: 20px;
     height: 20px;
     line-height: 20px;
     text-align: center;
     cursor: pointer;
 }


 span.delete-indivisual , span.edit-indivisual{
    background-color: #e74c3c;
    color: #fff;
    /* padding: 5px; */
    padding: 7px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
span.edit-indivisual{
    background-color: #3498db;
}
.woocommerce-MyAccount-content, .woocommerce-MyAccount-navigation {
    max-width: unset !important;
    margin: auto;
}

.last-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.mj-last-input-section-input {
    width: calc((100% / 3) - 20px);
}


.mj-last-input-section-input select {
    padding: 13px 20px;
}

.image-upload-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.image-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ddd;
    position: relative;
}

.remove-image {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
}

.save-images-button {
    background: #2271b1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
}

.save-images-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.dataTables_wrapper .dataTables_length {
    float: right !important;
    margin-bottom: 10px;
}

th.table_indivisual {
    width: 250px !important;
}

button.update_consolidate_package {
    background-color: dodgerblue;
    border: 0;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
}

a.back_button {
    background-color: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
}

td.edit-indivisual {
    cursor: pointer;
}