﻿body
{
    background: url('../Content/Images/Overview/bg.jpg');
    background-size: 150%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: white;
    height: 100%;
    /*height: 800px;*/
}

 .pro-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    cursor: pointer;
    user-select: none;
}

/* Hide default checkbox */
.pro-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkbox */
.pro-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 1.8px solid #b5b5b5;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.pro-checkbox:hover .checkmark {
    border-color: #007bff;
}

/* Checked */
.pro-checkbox input:checked + .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

/* Check icon */
.pro-checkbox .checkmark::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

/* Show check icon */
.pro-checkbox input:checked + .checkmark::after {
    display: block;
}

/* Disabled */
.pro-checkbox input:disabled + .checkmark {
    background-color: #f1f1f1;
    border-color: #ccc;
    cursor: not-allowed;
}

.pro-checkbox input:disabled ~ span {
    color: #aaa;
}
     .form-center-wrapper {
         margin-top:5px;
          /*padding: 50px;*/
          padding-bottom:20px;
        background-color: rgba(255, 255, 255, 0.85); /* white with opacity */
        border-radius: 12px;
    }
    .form-floating-input {
          /* Background layers: image on top, white underneath */
        background:
            url('../Content/Images/Design/custom-design/header-caption.jpg') no-repeat top center,
            #ffffff;  /* fallback / body color */
         background-size: 100% 65px; /* full width, auto height */

        border-width: 0;
        /*background: white;*/
        /*padding: 20px;*/
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }

    /* Optional: ensure header stretches full width */
.custom-group-header {
    
    width: 400px;
    margin: 0;
    padding: 0px 0px 5px 0px;/* control spacing INSIDE header */
    box-sizing: border-box;
    background-color: transparent;

    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
    font-weight: 600;       /* semi-bold like your screenshot */
    font-size: 20px;        /* adjust based on container */
    color: #ffffff;         /* white text as in your image */
    line-height: 1.2;       /* nice spacing */
    text-align: center;     /* center if needed */
    letter-spacing: 0.5px;  /* slight spacing for clarity */

    display: flex;
    flex-direction: column;   /* stack title + link vertically */
    justify-content: flex-start; /* top */
    align-items: flex-start;      /* horizontal center */
    text-align: center;       /* inline text centered */
    padding-top:5px;    
    
}

.dx-txtbx-design-form {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.2px;

        width: 100%;
        padding: 5px;
        /*margin-top: 10px;*/
        border-radius: 8px;

        border-color: #0E49B8;
    }

    .dx-txtbx-design {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;

        width: 100%;
        padding: 8px;
        /*margin-top: 10px;*/
        border-radius: 10px;

        border-color: #0E49B8;
    }
       .dx-txtbx-design-disabled {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;

        width: 100%;
        padding: 8px;
        /*margin-top: 10px;*/
        border-radius: 10px;

        background-color:#D9D9D9;
        border-color: #969696;
    }
    .dx-txtbx-caption {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
}
    .dx-txtbx-caption-disabled {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 200;
        letter-spacing: 0.3px;
        color:lightgray;
        font-style:italic;
    }
    /* Target all captions */
.dx-txtbx-caption-MI {
       font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;

    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Add the info icon after caption text */
.dx-txtbx-caption-MI::after {
     content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background-image: url('/Content/Images/Overview/info-icon.png'); /* path to your icon */
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    vertical-align: middle;

}

/* Optional: hover effect */
.dx-txtbx-caption-MI::after:hover {
    content: url('/Content/Images/info-icon-hover.png'); /* hover icon */
}


    .btn-comp {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

    width: 100%;
    padding: 8px;
    margin-top: 30px;
    border-radius: 10px;

    background-color: #0E49B8;
    color: #ffffff;
    border: none;
    cursor: pointer;

    /*transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;*/
}

/* Hover effect */
.btn-comp:hover {
    background-color: #0E49B8;   /* slightly darker */
    /*transform: translateY(-2px);*/
     box-shadow: 0 6px 15px rgba(14, 73, 184, 0.35);
}

/* Optional: active (click) effect */
.btn-comp:active {
    /*transform: translateY(0);*/
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

    .btn-res {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

    width: 100%;
    padding: 8px;
    margin-top: 30px;
    border-radius: 10px;

    background-color: #ffffff;
    border: 2px solid #0E49B8;
    color: #0E49B8;
    cursor: pointer;

    /*transition:*/
        /*background-color 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;*/
}

/* Hover effect */
.btn-res:hover {
    background-color: #0E49B8;
    color: #ffffff;
    /*transform: translateY(-2px);*/
      box-shadow: 0 6px 15px rgba(14, 73, 184, 0.35);
}

/* Active (click) effect */
.btn-res:active {
    /*transform: translateY(0);*/
    box-shadow: 0 6px 15px rgba(159, 64, 154, 0.35);
}


.dx-radiogroup .dx-radiobutton-icon {
    width: 15px !important; /* Reduce width */
    height: 15px !important; /* Reduce height */
}


.notice-header
{
    font-style: italic;
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
    font-weight: 350;       /* semi-bold like your screenshot */
    font-size: 18px;        /* adjust based on container */
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #000000;
}

.notice-body
{
    font-style: italic;
     font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
    font-weight: 350;       /* semi-bold like your screenshot */
    font-size: 12px;        /* adjust based on container */
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #000000;
    text-indent: 5em;
}

    .dx-memo-heath-caption {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
        white-space: normal !important;
}

       .dx-memo-heath-caption-pad {
        font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
        white-space: normal !important;
        padding-bottom:50px;
}


       
.checkbox-wrapper-1 *,
.checkbox-wrapper-1 ::after,
.checkbox-wrapper-1 ::before {
box-sizing: border-box;
}
.checkbox-wrapper-1 [type=checkbox].substituted {
margin: 0;
width: 0;
height: 0;
display: inline;
-webkit-appearance: none;
-moz-appearance: none;
/*appearance: none;*/
}
.checkbox-wrapper-1 [type=checkbox].substituted + label:before {
content: "";
display: inline-block;
vertical-align: top;
height: 1.15em;
width: 1.15em;
margin-right: 0.6em;
color: rgba(0, 0, 0, 0.275);
border: solid 0.06em;
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em inset, 0 0 0 0.07em transparent inset;
border-radius: 0.2em;
background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>') no-repeat center, white;
background-size: 0;
will-change: color, border, background, background-size, box-shadow;
transform: translate3d(0, 0, 0);
transition: color 0.1s, border 0.1s, background 0.15s, box-shadow 0.1s;
}
.checkbox-wrapper-1 [type=checkbox].substituted:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted:enabled + label:active:before {
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset;
background-color: #f0f0f0;
}
.checkbox-wrapper-1 [type=checkbox].substituted:checked + label:before {
background-color: #3B99FC;
background-size: 0.75em;
color: rgba(0, 0, 0, 0.075);
}
.checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled + label:active:before {
background-color: #0a7ffb;
color: rgba(0, 0, 0, 0.275);
}
.checkbox-wrapper-1 [type=checkbox].substituted:focus + label:before {
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55), 0 0 0 5px rgba(65, 159, 255, 0.3);
}
.checkbox-wrapper-1 [type=checkbox].substituted:focus:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted:focus + label:active:before {
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55), 0 0 0 5px rgba(65, 159, 255, 0.3);
}
.checkbox-wrapper-1 [type=checkbox].substituted:disabled + label:before {
opacity: 0.5;
}

.checkbox-wrapper-1 [type=checkbox].substituted.dark + label:before {
color: rgba(255, 255, 255, 0.275);
background-color: #222;
background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="rgba(34, 34, 34, 0.999)" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>');
}
.checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled + label:active:before {
background-color: #444;
box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(255, 255, 255, 0.1) inset;
}
.checkbox-wrapper-1 [type=checkbox].substituted.dark:checked + label:before {
background-color: #a97035;
color: rgba(255, 255, 255, 0.075);
}
.checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled:active + label:before,
.checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled + label:active:before {
background-color: #c68035;
color: rgba(0, 0, 0, 0.275);
}
.checkbox-wrapper-1 [type=checkbox].substituted + label {
-webkit-user-select: none;
user-select: none;
}

.logo-design {
    /*margin-bottom:10px;*/
    opacity:0;
    transition: 3000ms opacity;

}

.grid-amortdetails {
    border-radius: 10px 10px 0 0; /* top-left & top-right corners */
    border: 1px solid #ccc;       /* Optional border */
    border-color: #0E49B8;
    overflow: hidden;              /* Ensure rounded edges clip content */
    background-color: #0E49B8;    /* Optional background */
    color: #333;                   /* Optional text color */

}
.grid-header-amortdetails {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color:white;
    padding: 20px;
    background-color:#0E49B8;
}
.grid-cell-amortdetails {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 14px;
    /*font-weight: 500;*/
    letter-spacing: 0.2px;
    /*color:white;*/
    margin: 30px;
    /*background-color:#ff8c66;*/
}
    /* Default row */
.grid-row-default-amortdetails {
    background-color: #ffffff; /* White background */
    color: #333;               /* Text color */
}

/* Alternating row */
.grid-row-alt-amortdetails {
    background-color: #D6E6FF; /* Light gray */
    color: #333;
}
.grid-amortdetails .dxgvHeader td,
.grid-amortdetails .dxgvDataRow td,
.grid-amortdetails .dxgvDataRow.dxgvAltRow td {
    border: 1px solid;
    border-color:blue;
}

/* Stepper container */
.stepper {
     /*background: rgba(255, 0, 0, 0.2);*/
   display: flex;
    justify-content: space-between;
    align-items: center;


}

/*.bgcolortest {
      background: rgba(255, 0, 0, 0.2);
}*/

/* Each step */
.step {
  text-align: center;
  flex: 1;
  position: relative;
}

/* Step number circle */
.step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #ddd;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: bold;
  z-index: 1;
  position: relative;
}

/* Step title */
.step-title {
  font-size: 14px;
  color: #999;
}

/* Active step */
.step.active .step-number {
  background-color: #0E49B8; /* Primary color */
}

.step.active .step-title {
  color: #9f409a;
  font-weight: bold;
}

/* Completed step */
.step.completed .step-number {
  background-color: #77A43D; /* Green */
}

.step.completed .step-title {
  color: #77A43D;
}

/* Connecting lines */
.step::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #ddd;
  top: 20px; /* center of the circle */
  left: 50%;
  z-index: 0;
}

.step:last-child::after {
  display: none;
}

/* Completed line */
.step.completed::after {
  background-color: #77A43D;
}



   /* Page background */
.activation-wrapper {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

/* Card container */
.activation-card {
    background: #ffffff;
    max-width: 620px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-top: 5px solid #2f80ed;
}

/* Header */
.activation-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fbff;
    border-bottom: 1px solid #e6e9ef;
}

.activation-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.activation-icon {
    font-size: 26px;
}

/* Body content */
.activation-body {
    padding: 28px;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

.activation-body p {
    margin-bottom: 16px;
}

.activation-body .greeting {
    font-weight: 500;
}

.activation-body .closing {
    margin-top: 22px;
}

.activation-body .signature {
    margin-top: 26px;
    color: #2c3e50;
}

/* Base tab styling */
.loan-tabs .dxtc-tab {
    background-image: url('/Content/images/Design/loan-calc/tab-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

    color:white;
   width:155px;
}

/* NORMAL tab font */
.loan-tabs .dxtc-tab .dxtc-text,
.loan-tabs .dxtc-tab a {
    color: #fff !important;
    /*margin-right:20px;*/
    /*margin-left:5px;*/
}

/* ACTIVE tab font */
.loan-tabs .dxtc-activeTab .dxtc-text,
.loan-tabs .dxtc-activeTab a {
    color: #ffffff !important;
    /*font-weight: 700;*/
    /*text-transform: uppercase; /* optional */*/
    /*margin-right:20px;*/
    /*margin-left:5px;*/
}

/* Active tab */
.loan-tabs .dxtc-activeTab {
    background-image: url('/Content/images/Design/loan-calc/tab-active-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

     color:white;
      width:155px;
}

/* Hover effect */
.loan-tabs .dxtc-tab:hover {
     background-image: url('/Content/images/Design/loan-calc/tab-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

     color:white;
      /* Glow effect */
    box-shadow: 0 0 10px rgba(255, 255, 255, 1); /* outer glow */
    
    /* Optional: add text glow */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
    
    /* Smooth transition */
    transition: all 0.3s ease;
}

/* Remove DevExpress tab separators */
.loan-tabs .dxtc-tabSeparator {
    display: none !important;
}

/* Remove any bottom border on tabs */
.loan-tabs .dxtc-tab {
    border: none !important;
}

/* Remove bottom border on active tab */
.loan-tabs .dxtc-activeTab {
    border: none !important;
}

/* PAGE BACKGROUND */
.loan-app-page {
    /*background: #f4f6fa;*/
    /*min-height: 100vh;*/
    /*padding-bottom: 80px;*/
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* HEADER */
.loan-app-header {
    background: linear-gradient(135deg, #0E49B8, #163f8f);
    color: #fff;
    padding: 42px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-left span {
    display: block;
    margin-top: 6px;
    opacity: 0.85;
    font-size: 14px;
}

.header-icon {
    font-size: 64px;
    opacity: 0.15;
}

.loan-stepper-header {
     padding: 5px 408px; /* adds left & right spacing */
}
/* CARD */
.loan-app-card {
    background: #ffffff;
    max-width: 980px;
    margin: -10px auto 0;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(14, 73, 184, 0.18);
    overflow: hidden;
}
/* CONTAINER */
.loan-stepper {
    display: flex;
    gap: 48px;
    padding: 24px 32px;
    background: #f8faff;
    /*border-bottom: 1px solid #e3e8f4;*/
}

/* STEP */
.loan-stepper .loan-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #8a94a6;
    position: relative;
}

/* NUMBER */
.loan-stepper .loan-step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #c9d4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: #fff;
    color: #8a94a6;
}

/* ACTIVE */
.loan-stepper .loan-step.active {
    color: #0E49B8;
}

.loan-stepper .loan-step.active .loan-step-number {
    border-color: #0E49B8;
    color: #0E49B8;
}

/* COMPLETED */
.loan-stepper .loan-step.completed {
    color: #0E49B8;
}

.loan-stepper .loan-step.completed .loan-step-number {
    background: #77A43D;
    color: #fff;
    border-color: #77A43D;
}

/* CONNECTOR */
.loan-stepper .loan-step {
    position: relative;
}

.loan-stepper .loan-step::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: #dbe2f3;
}

/* Remove divider on last step */
.loan-stepper .loan-step:last-child::after {
    display: none;
}

.loan-stepper .loan-step:last-child::after {
    display: none;
}
/* FORM AREA */
.loan-form-content {
    padding: 10px 48px;
}

/* FOOTER */
.loan-card-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    /*padding: 20px 32px;*/
    background: #fafbfd;
    border-top: 1px solid #e6ebf5;
}

/* BUTTONS */
.btn-primary {
    background: #0E49B8;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0c3f9f;
}

.btn-secondary {
    background: transparent;
    color: #0E49B8;
    border: 1px solid #0E49B8;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(14, 73, 184, 0.06);
}


.dx-btn-success-plain {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

       border-radius: 4px;
}

.dx-btn-success-plain:hover {
    background-color: #0E49B8;   /* slightly darker */
    /*transform: translateY(-2px);*/
     box-shadow: 0 6px 15px rgba(14, 73, 184, 0.35);
}

/* Optional: active (click) effect */
.dx-btn-success-plain:active {
    /*transform: translateY(0);*/
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


.dx-btn-cancel-plain {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

       border-radius: 4px;

     background-color: #ffffff;
    border: 2px solid #0E49B8;
    color: #0E49B8;

      transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dx-btn-cancel-plain:hover {
   background-color: #0E49B8;
    color: #ffffff;
    /*transform: translateY(-2px);*/
       box-shadow: 0 6px 15px rgba(14, 73, 184, 0.35);
}

/* Optional: active (click) effect */
.dx-btn-cancel-plain:active {
    /*transform: translateY(0);*/
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


.dx-txtbox-nw-2 {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;
        padding-left:5px;
    border-radius: 2px;
    margin:1px;
    border-color: #0E49B8;
}


.dx-btn-success {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

    /*padding: 4px;*/
    margin:1px;
    border-radius: 10px;

      transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dx-btn-success:hover {
    background-color: #0E49B8;   /* slightly darker */
    /*transform: translateY(-2px);*/
     box-shadow: 0 6px 15px rgba(14, 73, 184, 0.35);
}

/* Optional: active (click) effect */
.dx-btn-success:active {
    /*transform: translateY(0);*/
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.dx-btn-cancel {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;

    /*padding: 4px;*/
    margin:1px;
    border-radius: 10px;

     background-color: #ffffff;
    border: 2px solid #0E49B8;
    color: #0E49B8;

      transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dx-btn-cancel:hover {
   background-color: #0E49B8;
    color: #ffffff;
    /*transform: translateY(-2px);*/
       box-shadow: 0 6px 15px rgba(14, 73, 184, 0.35);
}

/* Optional: active (click) effect */
.dx-btn-cancel:active {
    /*transform: translateY(0);*/
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.dx-caption-nw {
     font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif; /* modern sans-serif stack */
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
}

.dx-txtbox-nw {
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;

    padding: 4px;
    margin:1px;
    border-radius: 10px;
    border-color: #0E49B8;
}



/* Overlay background */
.dxlp-background {
    background: rgba(0, 0, 0, 0.45);
}

/* Main card */
.custom-loader {
    background: #ffffff;
    padding: 28px 36px;
    border-radius: 14px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Spinner */
.custom-loader .spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #2563eb; /* blue accent */
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

/* Text */
.custom-loader .loader-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.4px;
}
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

   .currency-input-dollar {
        background: url('/Content/Images/dollar.png') no-repeat left center;
         padding: 0 0 0 25px; /* top right bottom left */
    }

    .currency-input-peso {
        background: url('/Content/Images/peso.png') no-repeat left center;
        padding: 0 0 0 25px; /* top right bottom left */
    }


    .btn-action{
         min-width:120px;
    background:#1f4e79;
    color:white;
    border:none;
    padding:6px 14px;
    border-radius:4px;
    cursor:pointer;
    font-size:13px;
}

    /* container */
.action-dropdown {
    position: relative;
    display: inline-block;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* action button */
.btn-action {
    background: #0E49B8;
    border: none;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(14, 73, 184, 0.3);
}

.btn-action:hover {
    background: #0c3fa3;
    box-shadow: 0 6px 18px rgba(14, 73, 184, 0.4);
    transform: translateY(-1px);
}

/* Base dropdown */
.dropdown-menu-floating {
    position: absolute;
    display: none;
    background: #fff;
    min-width: 160px;
    max-width: 260px;
    border-radius: 10px;
    border: 1px solid #e5e9f0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    font-size: 14px;
    z-index: 9999;
}

/* Menu items */
.dropdown-menu-floating a {
    display: flex;
    align-items: center;
    padding: 15px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover */
.dropdown-menu-floating a:hover {
    background: rgba(14, 73, 184, 0.08);
}

/* Divider */
.dropdown-divider {
    height: 1px;
    margin: 4px 0;
    background: #e5e9f0;
}

/* Down animation */
.dropdown-menu-floating.animate-down {
    animation: dropdownFadeDown 0.18s ease;
}

@keyframes dropdownFadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Up animation */
.dropdown-menu-floating.animate-up {
    animation: dropdownFadeUp 0.18s ease;
}

@keyframes dropdownFadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* approve/reject styling */
.approve {
    color: #0E49B8;
    font-weight: 600;
}

.reject {
    color: #d32f2f;
    font-weight: 600;
}

/* divider */
.dropdown-divider {
    height: 1px;
    background: #f0f2f5;
    margin: 4px 0;
}

/* small arrow indicator on button */
.btn-action::after {
    content: "▾";
    margin-left: 6px;
    font-size: 10px;
}

/* subtle shadow and rounded corners for floating dropdowns */
.dropdown-menu-floating {
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

/* optional: responsive adjustment */
@media (max-width: 768px) {
    .btn-action {
        padding: 6px 14px;
        font-size: 13px;
    }
    .dropdown-menu,
    .dropdown-menu-floating {
        min-width: 160px;
        font-size: 13px;
    }
}



/* ===== GRID CONTAINER ===== */
.grid-custom {
    border-radius: 12px;            
    border: 1px solid #0E49B8;      
    overflow: hidden;                
    background-color: #ffffff;       
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    font-family: "Segoe UI", "Inter", "Roboto", Arial, sans-serif;
}

/* ===== GRID HEADER ===== */
.grid-header-custom {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: linear-gradient(90deg, #0E49B8 0%, #2F73D2 100%); 
    padding: 16px 20px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 2px solid #0E49B8;
}

/* ===== GRID CELLS ===== */
.grid-cell-custom {
    font-size: 14px;
    color: #333;
    padding: 12px 16px;
    letter-spacing: 0.2px;
    transition: background 0.3s, color 0.3s;
}

/* ===== ROW STYLES ===== */
.grid-row-default-custom {
    background-color: #ffffff;
}

.grid-row-alt-custom {
    background-color: #f4f9ff; 
}

/* ===== GRID BORDERS ===== */
.grid-custom .dxgvHeader td,
.grid-custom .dxgvDataRow td,
.grid-custom .dxgvDataRow.dxgvAltRow td {
    border: 1px solid #0E49B8;
}

/* ===== EDITABLE CELLS ===== */
.editable-cell {
    background-color: #fff8dc; 
    font-weight: 500;
    cursor: text;
    border-left: 3px solid #0E49B8; 
}

.editable-cell:hover {
    background-color: #fff3b8;
}

/* ===== NON-EDITABLE CELLS ===== */
.non-editable-cell {
    background-color: #f0f0f0;
    color: #888;
    cursor: default;
}

/* ===== GRID FOOTER ===== */
.grid-footer-custom {
    background-color: #f8f8f8;
    color: #333;
    font-weight: 500;
    padding: 10px 16px;
    border-top: 2px solid #0E49B8;
    text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .grid-custom {
        font-size: 13px;
    }
    .grid-header-custom {
        font-size: 14px;
    }
    .grid-cell-custom {
        padding: 8px 12px;
    }
}


/* Sidebar Container */

.leftPanel {
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
}

/* Header */

.sidebar-header {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
}

.sidebar-subtitle {
    font-size: 11px;
    color: #9aa0a6;
}

/* Navbar */

.filters-navbar {
    background: #ffffff;
}

/* Group Header */

.filters-navbar .dxnb-header {
    font-size: 11px;
    font-weight: 600;
    color: #8b8f97;
    letter-spacing: .5px;
    padding: 10px 14px;
}

/* Menu Items */

.filters-navbar .dxnb-item {
    padding: 8px 12px;
    margin: 2px 6px;
    border-radius: 6px;
    transition: all .15s ease;
}

/* Hover */

.filters-navbar .dxnb-item:hover {
    background: #f5f7fb;
}

/* Active */

.filters-navbar .dxnb-item.dxnb-selected {
    background: #0E49B8;
    color: white;
}

/* Icon Alignment */

.filters-navbar img {
    margin-right: 8px;
}

/* Default nav item style */
.filters-navbar .nav-item {
    color: #333; /* Normal text color */
    background-color: transparent; /* Normal background */
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect */
.filters-navbar .nav-item:hover {
    background-color: #f0f0f0;
    color: #fff;
}

/* Active / Selected nav item */
.filters-navbar .dx-nb-selected {
    background-color: #ff7f00 !important; /* Orange background for active */
    color: #fff !important; /* White text for contrast */
}

.enterprise-card{
    background:white;
    border-radius:10px;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
    padding:20px;
    margin-bottom:20px;
}
.card-header{
    font-size:15px;
    font-weight:600;
    color:white;
    padding:10px 16px;
    border-radius:6px 6px 0 0;
    background:linear-gradient(135deg,#2f5fd0,#1b3f91);
    margin:-20px -20px 20px -20px;
}


/* Button */
.btn-premium-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 6px 15px !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-premium-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(37,99,235,0.25);
}



.status-column {
    display: inline-block;
    width: 115px;           /* fixed width for all statuses */
    text-align: center;     /* center the text inside */
    font-weight: 600;
    color: #fff !important;
    border-radius: 6px;
    padding: 4px 0;         /* top/bottom padding only, no left/right */
    font-size: 0.85rem;
    line-height: 1.4;
}

.status-approved   { background-color: #28a745 !important; }
.status-rejected   { background-color: #dc3545 !important; }
.status-for-approval { background-color: #17a2b8 !important; }
.status-in-process { background-color: #6c757d !important; }
.status-for-cancellation   { background-color: #D97706 !important; }
.status-cancelled   { background-color: #7F1D1D !important; }

.status-haspo   { background-color: #2563EB !important; }
.status-deffered   { background-color: #F59E0B !important; }

.dxgvSelectedRow .status-column {
    color: #fff !important;
    opacity: 1 !important;
}

.form-header-filter {
 background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 20px;
}

/* Remove DevExpress default heavy styles */
.form-header-filter .dxflGroupBox {
    border: none !important;
    background: transparent !important;
}

/* Header Title */
.filter-card-title {
        font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    padding-bottom: 10px;

    border-bottom: 1px solid #e5e7eb; /* 👈 THIS IS THE LINE */
}
/* Custom title */
/*.dx-txtbox-nw-2 .dxeEditArea,
.dx-txtbox-nw-2 input {
    padding: 5px 12px !important;
    font-size: 14px !important;
}

.dx-txtbox-nw-2 {
    border-radius: 6px !important;
    border: 1px solid #d1d5db !important;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    transition: all 0.2s ease;
}*/

/* Hover */
/*.dx-txtbox-nw-2:hover {
    border-color: #9ca3af !important;
}*/

/* Focus */
/*.dx-txtbox-nw-2.dxeFocused {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}*/

/* Dropdown button */
/*.dx-txtbox-nw-2 .dxeButtonEditButton {
    background: transparent !important;
    border-left: none !important;
}*/


.grid-container-nw {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 0;
    overflow: hidden;
}
.grid-header-nw {
    background: #f1f5f9;
    color: #334155;
    font-weight: 600;
    font-size: 13px;
}
.grid-row-nw {
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
}

.grid-row-nw:hover {
    background: #f9fafb;
}

/* Focused / Selected row */
.grid-row-focused-nw {
    background: linear-gradient(90deg, #8697b0, #8697b0);
    border-left: 4px solid #4f46e5;
    color: #000000;
    font-weight: 600;
}

/* Optional: stronger hover when focused */
.grid-row-focused-nw:hover {
    background: linear-gradient(90deg, #8697b0, #8697b0);
    border-left: 4px solid #4f46e5;
    color: #000000;
    font-weight: 600;
}

.empty-state-nw {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.empty-state-icon-nw {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.empty-state-text-nw {
    font-size: 15px;
}
.cmd-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Main button */
.btn-add-nw {
    background: linear-gradient(180deg, #1a5fe0 0%, #0E49B8 100%);
    border: 1px solid #0E49B8;

    color: #ffffff;
    font-weight: 500;
    font-size: 13px;

    border-radius: 8px;

    padding: 6px 12px;

    cursor: pointer;

    box-shadow: 0 1px 2px rgba(14, 73, 184, 0.18);

    transition: all 0.18s ease-in-out;
}

/* Hover */
.btn-add-nw:hover {
    background: linear-gradient(180deg, #2563eb 0%, #0E49B8 100%);
    border-color: #1d4ed8;

    transform: translateY(-1px);

    box-shadow: 0 6px 14px rgba(14, 73, 184, 0.28);
}

/* Active */
.btn-add-nw:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(14, 73, 184, 0.2);
}

/* Focus */
.btn-add-nw:focus-visible {
    outline: 2px solid rgba(14, 73, 184, 0.35);
    outline-offset: 2px;
}

/* Circular enterprise action button */
.btn-add-circle {
    background: linear-gradient(180deg, #1a5fe0 0%, #0E49B8 100%);
    border: 1px solid #0E49B8;

    color: #ffffff;
    font-size: 13px;
    font-weight: 500;

    height: 34px;
    padding: 0 14px;

    border-radius: 999px; /* makes it pill/circle style */

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 1px 2px rgba(14, 73, 184, 0.18);

    transition: all 0.18s ease-in-out;
}

/* Hover - subtle lift */
.btn-add-circle:hover {
    background: linear-gradient(180deg, #2563eb 0%, #0E49B8 100%);
    border-color: #1d4ed8;

    transform: translateY(-1px);

    box-shadow: 0 6px 14px rgba(14, 73, 184, 0.28);
}

/* Active - pressed effect */
.btn-add-circle:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(14, 73, 184, 0.2);
}

/* Focus accessibility */
.btn-add-circle:focus-visible {
    outline: 2px solid rgba(14, 73, 184, 0.35);
    outline-offset: 2px;
}


.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);

    z-index: 9999;

    justify-content: center;
    align-items: center;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 5px solid #ffffff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.form-section-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.form-section-card-nw {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
/* Section Header */
.section-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #667085;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f4f7;
}

/* DevExpress caption clean override */
.dxflCaptionCell {
    font-size: 11px;
    font-weight: 600;
    color: #98a2b3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Read-only label look */
.dxflLabelCell {
    font-weight: 600;
    color: #1d2939;
}

/* Input fields (readonly financial look) */
.dxTextBox {
    border-radius: 10px !important;
}

.dxTextBox input {
    background: #f9fafb !important;
    border: 1px solid #eaecf0 !important;
    font-weight: 600 !important;
    color: #101828 !important;
    padding: 8px 10px !important;
}

/* =========================
   AMOUNT PAID EMPHASIS CARD
   ========================= */
.amount-paid-highlight {
    background: linear-gradient(135deg, #ecfdf3 0%, #ffffff 100%);
    border: 1px solid #a6f4c5 !important;
    border-left: 5px solid #12b76a !important;
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    /*padding: 10px 10px;*/
}

/* Label styling stronger */
.amount-paid-highlight .dxflCaptionCell {
    color: #027a48 !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
}

/* Input emphasis */
.amount-paid-input input {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #067647 !important;
    padding-right:45px;
    /*background: #f0fdf4 !important;
    border: 1px solid #a6f4c5 !important;
    border-radius: 10px !important;*/
    text-align: right;
    /*padding: 10px;*/
}

/* Optional glow effect (very subtle enterprise feel) */
.amount-paid-highlight:hover {
    box-shadow: 0 6px 18px rgba(18, 183, 106, 0.15);
    transition: 0.2s ease-in-out;
}

/* =========================
   BASE FINANCIAL FIELD STYLE
   ========================= */
.dx-finance-field input {
    background: #f9fafb !important;
    border: 1px solid #eaecf0 !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    color: #101828 !important;
    padding: 10px 12px !important;
    text-align: right;
}

/* LABELS (enterprise uppercase style) */
.dxflCaptionCell {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #667085;
}

/* =========================
   SOFT EMPHASIS (Payables)
   ========================= */
.finance-highlight-soft input {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%) !important;
    border: 1px solid #d9ddff !important;
}

/* =========================
   STRONG EMPHASIS (Balance)
   ========================= */
.finance-highlight-strong input {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) !important;
    border: 1px solid #fecaca !important;
    font-weight: 800 !important;
    color: #b42318 !important;
}

/* subtle hover polish (enterprise feel) */
.dx-finance-field input:hover {
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
    transition: 0.2s ease-in-out;
}


.highlight-soft {
    /*background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%) !important;*/
    /*border: 1px solid #d9ddff !important;
    border-left: 5px solid #d9ddff !important;*/
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    /*padding: 10px 10px;*/
       
}

/* Label styling stronger */
.highlight-soft .dxflCaptionCell {
    color: #d9ddff !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
}

/* Input emphasis */
.highlight-soft-input input {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    padding-right:45px;
    /*background: #f0fdf4 !important;
    border: 1px solid #a6f4c5 !important;
    border-radius: 10px !important;*/
    text-align: right;
    /*padding: 10px;*/
}

/* Optional glow effect (very subtle enterprise feel) */
.highlight-soft:hover {
    box-shadow: 0 6px 18px rgba(18, 183, 106, 0.15);
    transition: 0.2s ease-in-out;
}

/* SECTION CARD */
.form-section-elite {
    padding: 18px 22px;
    border-radius: 12px;
}

/* SECTION TITLE (premium hierarchy) */
.section-title-elite {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1f2937;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* CLEAN INPUT STYLE */
.dx-input-elite {
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    transition: all 0.2s ease;
}

.dx-input-elite:focus {
    border-color: #94a3b8 !important;
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.15);
}

/* MEMO LOOK */
.dx-memo-elite textarea {
    border-radius: 10px !important;
}

/* =========================
   SECTION WRAPPER (BIGGER FEEL)
========================= */
.form-section-responsive {
    padding: 24px 26px;
    border-radius: 14px;
}

/* =========================
   TITLE (MORE NOTICEABLE)
========================= */
.section-title-responsive {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #111827;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* =========================
   INPUTS (TOUCH FRIENDLY + PREMIUM)
========================= */
.dx-input-responsive {
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    font-size: 14px !important;
    padding: 6px 10px;
}

/* focus state = modern SaaS feel */
.dx-input-responsive:focus {
    border-color: #64748b !important;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.15);
}

/* memo field */
.dx-memo-responsive textarea {
    border-radius: 12px !important;
    font-size: 14px !important;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 768px) {

    .form-section-responsive {
        padding: 18px 14px;
    }

    .section-title-responsive {
        font-size: 16px;
        text-align: left;
    }

    .dx-input-responsive {
        font-size: 15px !important;
        height: 42px !important;
    }
}

.dx-combo-premium {
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    padding: 6px;
    font-size: 14px;
    transition: all 0.25s ease;
    background-color: #ffffff;
}

.dx-combo-premium:focus,
.dx-combo-premium:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dx-caption {
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.3px;
}

.edit-popup-container {
    border-radius: 14px;
    overflow: hidden;
}

/* Popup header */
.edit-popup-container .dxpc-header {
    background-color: #f5f7fa;
    font-weight: 600;
    padding: 12px 16px;
}

/* Popup body */
.edit-popup-container .dxpc-content {
    padding: 0;
}


/* 🔷 LABEL */
.dxflCaptionCell {
    font-size: 11.5px !important;
    font-weight: 500;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* 🔷 VALUE */
.field-value {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}

/* 🔷 EMPHASIS */
.field-value.strong {
    font-size: 15px;
    font-weight: 700;
}

/* 🔷 MONO (for IDs) */
.field-value.mono {
    font-family: "Consolas", monospace;
    letter-spacing: 0.5px;
}

/* 🔷 BADGE */
.field-value.badge {
    background: #eff8ff;
    color: #175cd3;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
}

/* 🔷 LINK */
.field-value.link {
    color: #2e90fa;
}

/* 🔷 SPACING */
.form-item {
    padding-bottom: 18px;
}

/* 🔷 GRID BREATHING SPACE */
.dxflGroup {
    column-gap: 28px;
}

/* 🔷 REMOVE OLD BORDERS */
.dxflGroupBox {
    border: none !important;
}


/* =====================================================
   ENTERPRISE CLEAN PRO FORM
   DevExpress MVC v19 Compatible
===================================================== */


.form-clean-pro {
    background: #ffffff !important;
    border: 5px solid #e8edf5 !important;
    border-radius: 14px !important;
    padding: 18px 22px 20px 22px !important;
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.08) !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
}


/* Section title */
.form-clean-title-pro {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #edf1f7;
    letter-spacing: .01em;
}

/* Layout row spacing */
.form-clean-pro .dxflItem,
.form-clean-pro .dxflItemSys {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    background: transparent !important;
}

/* Labels */
.form-clean-pro .dxflCaption,
.form-clean-pro .dxflCaptionCell {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #7b8797 !important;
    padding-right: 14px !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
}

/* Remove DevExpress default borders */
.form-clean-pro .dxeTextBoxSys,
.form-clean-pro .dxeButtonEditSys,
.form-clean-pro .dxeEditAreaSys {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Main value underline field */
.dx-clean-value-pro {
    width: 100% !important;
    height: 34px !important;
    border: none !important;
    border-bottom: 1px solid #dfe5ee !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Value text */
.dx-clean-value-pro input,
.dx-clean-value-pro .dxeEditArea {
    height: 33px !important;
    line-height: 33px !important;
    padding: 0 4px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    cursor: default !important;
}

/* Hover effect: expensive but subtle */
.dx-clean-value-pro:hover {
    border-bottom-color: #b8c4d4 !important;
}

/* Focus cleanup */
.dx-clean-value-pro input:focus,
.dx-clean-value-pro .dxeEditArea:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Category badge */
.category-badge-pro {
    border-bottom: 1px solid #dfe5ee !important;
}

.category-badge-pro input,
.category-badge-pro .dxeEditArea {
    display: inline-block !important;
    width: auto !important;
    min-width: 86px !important;
    height: 22px !important;
    line-height: 22px !important;
    margin-top: 5px !important;
    padding: 0 11px !important;
    border-radius: 999px !important;
    background: #e0ecff !important;
    color: #2563eb !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

/* Hide DateEdit dropdown button */
.form-clean-pro .dxeButton {
    display: none !important;
}

/* Table cleanup */
.form-clean-pro table {
    border-spacing: 0 !important;
}

.form-clean-pro td {
    vertical-align: middle !important;
}

/* Make fields breathe better */
.form-clean-pro .dxflNestedControlCell {
    padding-right: 18px !important;
}

/* Last column no extra right padding */
.form-clean-pro .dxflNestedControlCell:last-child {
    padding-right: 0 !important;
}


.popup-loading-panel {
    position: absolute;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.popup-loading-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    text-align: center;
    min-width: 180px;
}

.popup-spinner {
    width: 34px;
    height: 34px;
    border: 4px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: popupSpin 0.8s linear infinite;
    margin: 0 auto 12px auto;
}

.popup-loading-text {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

@keyframes popupSpin {
    to {
        transform: rotate(360deg);
    }
}



/* ================================
   ENTERPRISE BREADCRUMB PRO
================================ */

.breadcrumb-pro-wrapper {
    width: 100%;
    margin: 0 0 18px 0;
    padding: 16px 20px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #edf5ff 100%);
    border: 1px solid #dbe7f5;
    border-radius: 14px;
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}

.breadcrumb-pro-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.breadcrumb-pro-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, #0f6bdc 0%, #084fba 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 22px rgba(15, 107, 220, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    flex: 0 0 auto;
}

.breadcrumb-pro-icon span {
    font-size: 19px;
    line-height: 1;
    transform: translateY(-1px);
}

.breadcrumb-pro-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.breadcrumb-pro-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7c93;
}

.breadcrumb-pro-links {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    min-width: 0;
}

.breadcrumb-pro-link,
.breadcrumb-pro-link a,
.breadcrumb-pro-link span {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #155ebc !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.breadcrumb-pro-link:hover,
.breadcrumb-pro-link a:hover {
    color: #073f91 !important;
    text-decoration: none !important;
}

.breadcrumb-pro-separator {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #3b6ea8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
}

.breadcrumb-pro-current {
    font-size: 14px;
    font-weight: 800;
    color: #172033;
    background: #ffffff;
    border: 1px solid #dce8f7;
    padding: 7px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.breadcrumb-pro-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef7ff;
    border: 1px solid #cfe4ff;
    color: #185da8;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.breadcrumb-pro-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .breadcrumb-pro-wrapper {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px;
        border-radius: 12px;
    }

    .breadcrumb-pro-status {
        align-self: flex-start;
    }

    .breadcrumb-pro-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .breadcrumb-pro-current {
        padding: 6px 10px;
    }
}

.loading-overlay-pro {
    background: rgba(8, 24, 48, 0.35) !important;
}

.loading-panel-pro {
    border-radius: 16px !important;
    border: 1px solid rgba(180, 205, 240, 0.45) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%) !important;
    box-shadow: 0 24px 70px rgba(15, 35, 80, 0.28) !important;
    padding: 22px 28px !important;
    min-width: 280px;
}

.loading-panel-pro .dxlp-loadingImage,
.loading-panel-pro img {
    width: 34px !important;
    height: 34px !important;
}

.loading-panel-pro .dxlp-loadingText,
.loading-panel-pro td {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #163968 !important;
}


.form-clean-pro-uaccess {
    background: #f8fafc;
    border: 1px solid #d7e2ef;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 22px 55px rgba(15, 45, 85, .10);
}

.uaccess-main-header-pro {
    padding: 26px 26px;
    margin-bottom: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #123f78 0%, #1c5aa6 100%);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 18px 36px rgba(20, 76, 140, .20);
}

.uaccess-main-header-pro h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.25px;
}

.uaccess-main-header-pro p {
    margin: 8px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,.84);
}

.uaccess-header-actions-pro {
    display: flex;
    align-items: center;
    gap: 10px;
}

.uaccess-header-pill-pro {
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.uaccess-header-pill-pro span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7de9a8;
    box-shadow: 0 0 0 5px rgba(125,233,168,.18);
}

.uaccess-profile-card-pro {
    min-height: 300px;
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #dbe5f1;
    box-shadow: 0 12px 28px rgba(15,45,85,.055);
}

.uaccess-avatar-pro {
    width: 78px;
    height: 78px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #164a88 0%, #2467b4 100%);
    margin-bottom: 18px;
}

.uaccess-profile-name-pro {
    color: #10233f;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.uaccess-profile-sub-pro {
    margin-top: 8px;
    color: #607086;
    font-size: 13px;
}

.uaccess-verified-pro {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #effdf5;
    border: 1px solid #bbf7d0;
    color: #047857;
    font-size: 12px;
    font-weight: 900;
}

.uaccess-verified-pro span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #86efac;
}

.uaccess-side-field-pro {
    margin-top: 20px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #d6dee8;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #243449;
    font-size: 13px;
    font-weight: 750;
    box-shadow: inset 0 1px 2px rgba(15,45,85,.025);
}

.uaccess-side-field-pro.muted {
    margin-top: 20px;
    color: #66758b;
}

.uaccess-stats-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    margin-top: 16px;
}

.uaccess-stats-pro div {
    min-height: 76px;
    padding: 13px;
    border-radius: 13px;
    background: #f8fafc;
    border: 1px solid #e0e7ef;
}

.uaccess-stats-pro strong {
    display: block;
    color: #163a63;
    font-size: 19px;
    font-weight: 900;
}

.uaccess-stats-pro span {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .45px;
}

.uaccess-right-panel-pro {
    background: #ffffff !important;
    border: 1px solid #d8e4f2 !important;
    border-radius: 22px !important;
    padding: 20px 20px 30px !important;
    box-shadow:
        0 14px 34px rgba(15, 45, 85, .065),
        inset 0 1px 0 rgba(255,255,255,.85);
}

.uaccess-right-panel-pro .dxflGroupBox {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.uaccess-right-panel-pro .dxflGroup {
    background: transparent !important;
}

.uaccess-right-panel-pro .dxflGroupCell {
    background: transparent !important;
}

.uaccess-right-panel-pro .dxflItem {
    padding-bottom: 14px !important;
}
.uaccess-section-card-pro {
    padding: 0 0 14px !important;
    margin-bottom: 10px !important;
    border: none !important;
    border-bottom: 1px solid #e3ebf5 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.uaccess-section-card-pro.section-gap-pro {
    margin-top: 22px !important;
}

.uaccess-section-head-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
    border-bottom: none !important;
}

.uaccess-section-head-pro h3 {
    margin: 0;
    color: #10233f;
    font-size: 16px;
    font-weight: 900;
}

.uaccess-section-head-pro span {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .65px;
}
.uaccess-section-head-pro {
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e7ef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uaccess-section-head-pro h3 {
    margin: 0;
    color: #10233f;
    font-size: 16px;
    font-weight: 900;
}

.uaccess-section-head-pro span {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .65px;
}

.dx-clean-value-pro-uaccess {
    height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid #d3deeb !important;
    background: #ffffff !important;
    color: #243449 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    box-shadow:
        inset 0 1px 2px rgba(15,45,85,.025),
        0 1px 0 rgba(15,45,85,.03) !important;
}

.dx-clean-value-pro-uaccess input,
.dx-clean-value-pro-uaccess .dxeEditArea {
    color: #243449 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    background: transparent !important;
}

.dx-clean-value-pro-uaccess:hover {
    border-color: #b8c7d8 !important;
    background: #fbfcfe !important;
}

.uaccess-display-field-pro label,
.form-clean-pro-uaccess .dxflCaption,
.form-clean-pro-uaccess .dxflCaptionCell {
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: .55px;
}

.form-clean-pro-uaccess .dxflItem {
    padding-bottom: 16px !important;
}

.uaccess-display-field-pro label {
    display: block;
    margin-bottom: 7px;
}

.uaccess-display-field-pro div {
    height: 44px;
    border-radius: 12px;
    border: 1px solid #d3deeb;
    background: #ffffff;
    color: #243449;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.uaccess-module-panel-clean-pro-uaccess,
.uaccess-assessment-panel-clean-pro-uaccess {
    background: #ffffff;
    border: 1px solid #d9e3ee;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(15,45,85,.06);
}

.uaccess-module-header-clean-pro-uaccess h3 {
    margin: 0;
    color: #10233f;
    font-size: 16px;
    font-weight: 900;
}

.uaccess-module-header-clean-pro-uaccess p {
    margin: 6px 0 16px;
    color: #64748b;
    font-size: 13px;
}

.uaccess-module-grid-clean-pro-uaccess {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.uaccess-module-card-clean-pro-uaccess {
    border: 1px solid #dce5ef;
    border-radius: 15px;
    padding: 15px;
    background: #ffffff;
}

.uaccess-module-card-clean-pro-uaccess strong {
    display: block;
    color: #12365f;
    font-size: 13px;
    margin-bottom: 6px;
}

.uaccess-module-card-clean-pro-uaccess span {
    color: #64748b;
    font-size: 12px;
}

.uaccess-assessment-row-clean-pro-uaccess {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    padding: 14px;
    background: #ffffff;
    margin-bottom: 10px;
}

.uaccess-assessment-row-clean-pro-uaccess strong {
    color: #12365f;
    font-size: 13px;
}

.uaccess-assessment-row-clean-pro-uaccess small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
}

.uaccess-assessment-row-clean-pro-uaccess span {
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 900;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #dbe3ec;
}

.btn-save-clean-pro-uaccess {
    height: 42px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0f3f78, #1d5fae) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    border: none !important;
    box-shadow: 0 12px 24px rgba(30,64,175,.20);
}

/* Checkbox Wrapper */
.add-chkbx-wrap {
    min-height: 44px !important;
    padding: 0 14px !important;
    border-radius: 12px !important;
    border: 1px solid #d3deeb !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow:
        inset 0 1px 2px rgba(15,45,85,.025),
        0 1px 0 rgba(15,45,85,.03) !important;
}

/* Actual Checkbox */
.add-chkbx-box {
    width: 17px !important;
    height: 17px !important;
    cursor: pointer !important;
}

/* Text */
.add-chkbx-wrap label {
    color: #243449 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    cursor: pointer;
}
.clean-dropdown-btn-pro {
    width: 22px !important;
    min-width: 22px !important;
    border-left: 1px solid #d3deeb !important;
    border-radius: 0 12px 12px 0 !important;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%) !important;
}

.clean-dropdown-btn-pro:hover {
    background: linear-gradient(180deg, #edf6ff 0%, #dbeafe 100%) !important;
}

.clean-pro-value-caption {
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: .55px;
}

.loi-template-download-pro {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #dbe3ee;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    font-family: "Segoe UI", Arial, sans-serif;
}

.loi-template-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16385f, #0f2745);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(15, 39, 69, 0.22);
}

.loi-template-content {
    flex: 1;
    text-align: left;
}

.loi-template-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.loi-template-subtitle {
    font-size: 12.5px;
    color: #64748b;
}

.loi-template-link {
    padding: 10px 16px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #cfd8e3;
    color: #16385f;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.06);
}

.loi-template-link:hover {
    background: #16385f;
    border-color: #16385f;
    color: #ffffff;
}

.dx-upload-pro {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    font-family: "Segoe UI", Arial, sans-serif;
}

.dx-upload-pro .dxucTextBox {
    height: 42px !important;
    border: 1px solid #cfd8e3 !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    color: #1f2937 !important;
    font-size: 13px !important;
}

.upload-browse-btn-pro {
    height: 42px !important;
    border-radius: 10px !important;
    border: 1px solid #cfd8e3 !important;
    background: linear-gradient(to bottom, #ffffff, #f3f6fa) !important;
    color: #1e293b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 9px rgba(15, 23, 42, 0.07);
}

.upload-excel-btn-pro {
    height: 42px !important;
    min-width: 140px !important;
    border-radius: 10px !important;
    border: 1px solid #16385f !important;
    background: linear-gradient(135deg, #16385f, #0f2745) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .4px;
    box-shadow: 0 8px 18px rgba(15, 39, 69, 0.24);
}

.upload-browse-btn-pro:hover {
    background: linear-gradient(to bottom, #f8fafc, #e9eef5) !important;
    border-color: #aebccd !important;
}

.upload-excel-btn-pro:hover {
    background: linear-gradient(135deg, #1f4f82, #15375f) !important;
    box-shadow: 0 10px 24px rgba(15, 39, 69, 0.32);
}

.dx-upload-pro .dxucFileList {
    margin-top: 12px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #f9fbfd !important;
    padding: 10px !important;
}

.dx-upload-pro .dxucProgressPanel {
    margin-top: 12px !important;
    border-radius: 12px !important;
    background: #f1f5f9 !important;
    border: 1px solid #dbe3ee !important;
    padding: 10px !important;
}

.module-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 4px 2px 18px;
    border-bottom: 1px solid #e7eaf0;
    margin-bottom: 18px;
}

.module-subtitle-pro {
    margin-top: 4px;
    font-size: 12px;
    color: #7a8494;
    letter-spacing: .2px;
}

.module-actions-pro {
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-btn-pro {
    border: 1px solid #d9dee8;
    background: linear-gradient(180deg, #ffffff, #f7f8fb);
    color: #1f2937;
    height: 36px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .35px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
    transition: all .18s ease;
}

.module-btn-pro:hover {
    transform: translateY(-1px);
    border-color: #bfc7d5;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .10);
}

.module-btn-update {
    color: #0f3b6f;
}

.module-btn-print {
    color: #3f4652;
}

@media (max-width: 768px) {
    .module-header-pro {
        flex-direction: column;
        align-items: stretch;
    }

    .module-actions-pro {
        width: 100%;
    }

    .module-btn-pro {
        width: 100%;
    }
}