/* ===========================
   FONTS & FOUNDATIONAL STYLES
   =========================== */
@font-face {
  font-family: 'nirmala-ui';
  src: url('../../assets/font/nirmala-ui.ttf') format('truetype');
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "nirmala-ui", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  pointer-events: none;
  z-index: 0;
}

main, section.content {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  max-height: calc(100vh - 190px);
  margin-top: 10px;
  flex: 1;
  height: calc(100vh - 190px);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: #034374;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0px !important;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ===========================
   BUTTONS & CONTROLS
   =========================== */
button, .btn, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(3, 67, 116, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3, 67, 116, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.s-site-logo-img {
  content: url('../../assets/images/bg-images/zkebsgku.png');
}

.s-container-tight {
  max-width: 100%;
}

.s-TranslationGrid input.custom-text {
  width: 100%;
  height: 23px;
  padding: 0 3px;
}

.s-PermissionCheckEditor {
  min-height: 450px;
}

.field .caption,
.s-EnumFlagsEditor.editor label,
.s-RadioButtonEditor.editor label,
.s-Form .s-StaticTextBlock {
  color: #333;
  font-size: 15px;
}

/* ===========================
   ASSESSMENTS DIALOG - LAYOUT FIXES
   =========================== */
.s-AssessmentsDialog.ui-dialog {
  border-radius: 12px !important;
  overflow: hidden;
}

.s-AssessmentsDialog .ui-dialog-titlebar {
  background: linear-gradient(135deg, #034374 0%, #026ba6 100%) !important;
  color: #fff !important;
  border-bottom: none !important;
  padding: 14px 20px !important;
  font-size: 16px;
  font-weight: 600;
}

.s-AssessmentsDialog .ui-dialog-content {
  padding: 0 !important;
}

.s-AssessmentsDialog .s-Form {
  padding: 20px 24px;
  background: #fff;
}

/* ---- Photo field styling (now on its own row via [HalfWidth]) ---- */
.s-AssessmentsDialog .field[data-fieldname="Photo"] .s-ImageUploadEditor,
.s-AssessmentsDialog .field[data-fieldname="Photo"] .s-MultipleImageUploadEditor {
  border: 2px dashed #bcd0e5;
  border-radius: 10px;
  background: #f4f8fd;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-AssessmentsDialog .field[data-fieldname="Photo"] .s-ImageUploadEditor img {
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

/* ---- Category section headers ---- */
.s-AssessmentsDialog .category-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #034374 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  padding: 6px 10px !important;
  margin: 16px 0 10px 0 !important;
  background: linear-gradient(90deg, #eaf2fb 0%, transparent 100%) !important;
  border-left: 4px solid #034374 !important;
  border-radius: 0 6px 6px 0 !important;
  border-bottom: none !important;
}

/* ---- Radio buttons horizontal ---- */
.s-AssessmentsDialog .s-RadioButtonEditor {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 18px !important;
  padding: 8px 0 !important;
}

.s-AssessmentsDialog .s-RadioButtonEditor label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-weight: 500 !important;
}

/* ---- Dialog footer ---- */
.s-AssessmentsDialog .ui-dialog-buttonpane {
  background: #f8fafc !important;
  border-top: 1px solid #e8eef4 !important;
  padding: 12px 20px !important;
}

.s-AssessmentsDialog .ui-dialog-buttonpane .ui-button {
  background: linear-gradient(135deg, #034374 0%, #026ba6 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(3, 67, 116, 0.2) !important;
}

.s-AssessmentsDialog .ui-dialog-buttonpane .ui-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(3, 67, 116, 0.3) !important;
}

input, select, textarea, .form-control {
  border-color: #e0e0e0;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  color: #333;
  padding: 12px 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, select:focus, textarea:focus, .form-control:focus {
  outline: none;
  border-color: #034374;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(3, 67, 116, 0.15), 0 4px 12px rgba(3, 67, 116, 0.15);
  transform: translateY(-1px);
}

input:hover, select:hover, textarea:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===========================
   LOGIN PAGE STYLES
   =========================== */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
}

.login-card {
  background: #ffffff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.6s ease-out;
}

.login-header {
  margin-bottom: 2rem;
  text-align: center;
}

.login-title {
  font-size: 28px;
  font-weight: 800;
  color: #034374;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.login-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  font-weight: 500;
}

.login-form {
  margin-bottom: 1.5rem;
}

.form-fields {
  margin-bottom: 1.5rem;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.forgot-password-link {
  font-size: 13px;
  color: #034374;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.forgot-password-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #034374, #026ba6);
  transition: width 0.3s ease;
}

.forgot-password-link:hover::after {
  width: 100%;
}

.btn-login {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(3, 67, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: left 0.5s ease;
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3, 67, 116, 0.4);
}

.btn-login:hover::before {
  left: 100%;
}

.btn-text {
  display: block;
}

.btn-icon {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-login:hover .btn-icon {
  transform: translateX(4px);
}

.login-divider {
  display: none;
}

.login-divider::before,
.login-divider::after {
  display: none;
}

.login-divider span {
  display: none;
}

.login-footer {
  display: none;
}

.signup-prompt {
  display: none;
}

.signup-link {
  display: none;
}
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background-clip: padding-box;
  width: 100%;
  background-color: #f8f9fa;
  outline-color: #034374;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  font-family: inherit;
}

input::placeholder, select::placeholder, textarea::placeholder, .form-control::placeholder {
  color: #999;
  font-weight: 500;
}

input:hover, select:hover, textarea:hover, .form-control:hover {
  border-color: #bbb;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

input:focus, input:focus-visible, select:focus, select:focus-visible,
textarea:focus, textarea:focus-visible, .form-control:focus, .form-control:focus-visible,
input[type=checkbox]:focus, input[type=radio]:focus, .select2-container-active {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(3, 67, 116, 0.15), 0 2px 12px rgba(3, 67, 116, 0.15);
  border-color: #034374;
  background-color: #ffffff;
  transform: translateY(-1px);
}

input:focus, input:focus-visible, select:focus, select:focus-visible,
textarea:focus, textarea:focus-visible, .form-control:focus, .form-control:focus-visible,
input[type=checkbox]:focus, input[type=radio]:focus, .select2-container-active {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(3, 67, 116, 0.1);
  border-color: #034374;
  background-color: #ffffff;
}

/* ===========================
   CARDS & PANELS
   =========================== */
.s-Panel {
  background-color: #ffffff;
  height: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 2rem;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.s-Panel:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.full-height-page section.content > .s-Panel,
.full-height-page section.content > .s-DataGrid {
  
  padding: 2px;
  box-shadow: none;
}

.s-sidebar-header {
  background-color: #fff;
  border-bottom: 1px solid #e8e9ea;
  height: 130px !important;
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  padding-top: 0px;
}

.s-Toolbar, .tool-group, .tool-group-like {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;

}

.tool-button {
  border: none;
  padding: 5px 9px;
  min-width: 2.4em;
  margin-left: 8px;
  user-select: none;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(3, 67, 116, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tool-button:hover {
  background: linear-gradient(135deg, #026ba6 0%, #034374 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(3, 67, 116, 0.3);
  color: #fff !important;
}

.tool-button.delete-button {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

.tool-button.delete-button:hover {
  background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
  box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

.tool-button i, 
.tool-button span.icon,
.tool-button .fa,
.tool-button .fas,
.tool-button .far,
.tool-button [class^="text-"],
.tool-button [class*=" text-"] {
  color: #fff !important;
}

.tool-group, .tool-group-like {
  flex-wrap: wrap;
  background: transparent;
  margin-right: var(--s-col-gap);
  row-gap: var(--s-row-gap);
  align-items: end;
  padding: 10px 0;
}

.inline-action {
  background-repeat: no-repeat;
  background-position: center center;
  width: 116px;
  height: 16px;
  cursor: pointer;
  opacity: 0.7;
  display: inline-block;
  font-weight: 600;
}

.inline-action:hover {
  opacity: 1;
}

/* ===========================
   FORM STYLES & CATEGORIES
   =========================== */
.s-Form {
  padding: 20px;
  background: #fcfcfc;
  border-radius: 12px;
}

.s-Form .category-title {
  font-size: 18px;
  font-weight: 700;
  color: #034374;
  border-bottom: 2px solid #e0e6ed;
  padding-bottom: 8px;
  margin-top: 25px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.s-Form .field .caption,
.field .caption,
.s-EnumFlagsEditor.editor label,
.s-RadioButtonEditor.editor label,
.s-Form .s-StaticTextBlock {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input, select, textarea, .form-control {
  border-color: #ced4da;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  color: #495057;
  padding: 10px 14px;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}
.s-AssessmentsGrid .s-Toolbar {
  display: inline-flex;
  vertical-align: bottom;
}
.s-Toolbar > .clear {
  flex-basis: content;
  margin-bottom: 0;
}

/* Force Grid Toolbar into a single line */
.grid-toolbar.clearfix::before,
.grid-toolbar.clearfix::after {
  display: none !important;
  content: none !important;
}

.grid-toolbar.s-Serenity-Toolbar.s-Toolbar.clearfix {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: 100% !important;
}

.s-Toolbar {
  flex-wrap: nowrap;
  width:100%;
}
.s-AssessmentsGrid .s-QuickFilterBar {
  display: inline-flex;
  gap: 12px;
  align-items: flex-end;
  vertical-align: bottom;
  margin-left: 20px;
  margin-bottom: 10px;
}

.s-AssessmentsGrid .s-QuickFilterBar .quick-filter-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Status Badge Styling */
.s-AssessmentsGrid .slick-cell .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.s-AssessmentsGrid .slick-cell .badge-danger {
  background-color: #dc3545 !important;
  color: #ffffff !important;
}

.s-AssessmentsGrid .slick-cell .badge-warning {
  background-color: #ffc107 !important;
  color: #000000 !important;
}

.s-AssessmentsGrid .slick-cell .badge-success {
  background-color: #28a745 !important;
  color: #ffffff !important;
}

.s-AssessmentsGrid .slick-cell .badge-secondary {
  background-color: #6c757d !important;
  color: #ffffff !important;
}

.grid-title, .panel-titlebar {
  font-size: 21px;
  font-weight: 600;
  padding: 0;
  font-family: var(--header-font);
  color: black;
  border: none;
  margin-bottom: 0.7rem;
  display: flex;
}

.nav-link {
  font-size: large;
}

.img-3x, .img-4x {
  width: 4rem;
  height: 4rem;
}

/* ===========================
   LAYOUT & CONTAINERS
   =========================== */
.s-main {
 
  
  margin-left: 0;
  min-height: calc(100vh - 200px);
}

.top_header {
  padding: 5px 15px;
}

.heder_start {
  background-color: black;
}

.profileSectionElement {
  justify-content: space-between;
  align-items: center;
}

.down_header {
  max-width: 1320px;
  margin: 0 auto;
 }

.same_wid {
  width: 100%;
  max-width: 30%;
}

.same_wid-1 {
  width: 100%;
}

.logoSite {
  width: 35%;
}

.main_header {
  width: 100%;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.midTitle75 a h3, .midTitle75 a p {
  text-align: left;
}

.heading_h1 {
  color: #E65A15;
  font-size: 35px;
}

.mid_detail {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}

.mid_detail a {
  text-align: center;
}

.mid_detail a p {
  color: black;
}

.mid_detail a h3 {
  color: #E65A15;
  font-size: 25px;
  font-weight: bold;
}

#navcollaps {
  cursor: pointer;
}

.login_persions {
  max-width: 220px;
  border-radius: 29px;
  padding: 12px 0;
  text-align: center;
  background-color: #4876B7;
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.login_persions a {
  width: 100%;
  height: 100%;
}

.log_inout {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 15%;
}

/* Navbar */
.mynavbars {
  background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
  padding: 12px 5px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(3, 67, 116, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbars {
  transition: 0.7s ease-in-out;
  background-color: #034374;
  position: relative;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1020;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 56px;
  padding: 0;
}

.sid_nav {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sid_nav .listname {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  padding: 0 12px;
  border-left: 1px solid #fff;
}

.sid_nav .myullist {
  display: flex;
  justify-content: center;
}

.sid_nav nav ul li {
  display: inline-block;
}

/* Submenu */
.subminu {
  background-color: #E65A15 !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 9999;
  display: none;
  margin-top: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  max-height: 400px;
  overflow-y: auto;
}

.subminu li {
  width: 100% !important;
  border-bottom: 2px dotted #fff;
  position: relative;
}

.subminu li a {
  color: #fff;
  display: block;
  padding: 10px 15px;
}

.subminu li:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}

.dwopsub {
  position: relative;
  padding-bottom: 10px; /* Creates a hoverable bridge */
}

  .dwopsub:hover .subminu {
    display: block;
  }

.sub_menu {
    position: absolute;
    top: 100%;
    background-color: #fff;
    max-width: 500px;
    min-width: 150px;
    z-index: 10001;
    text-align: left;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 8px 0;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    max-height:600px;
}

.subminu2:hover .sub_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menucoll {
    padding-right: 0.5rem;
    display: none;
  }

    .menucoll i {
      color: #fff;
      font-size: 20px;
    }

  .closebutton {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: none;
  }
  /* Social Links */
  .social_link {
    display: flex;
    gap: 8px;
  }

    .social_link li {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid rgb(119, 119, 119);
      display: flex;
      justify-content: center;
      align-items: center;
    }

      .social_link li:hover {
        border-color: #ffffff;
      }

      .social_link li a {
        color: #fff;
      }
  /* ===========================
   LOGIN CONTAINER & CARD
   =========================== */
  .login-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    background-image: url('../../assets/images/login-bg.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-y: auto;
  }

    .login-container::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.95);
      z-index: 0;
    }

  .login-card {
    background: #ffffff;
    width: 50%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    padding: 60px 50px;
    animation: slideUp 0.6s ease-out;
    border: none;
    backdrop-filter: none;
    position: relative;
    z-index: 1;
    margin: 0;
    height: auto;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .login-header {
    text-align: center;
    margin-bottom: 25px;
  }

  .login-title {
    font-size: 28px;
    font-weight: 800;
    color: #034374;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
  }

  .login-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
  }

  .login-form {
    width: 100%;
  }

  .form-fields {
    margin-bottom: 18px;
  }

  .form-footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    min-height: 24px;
  }

  .forgot-password-link {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
  }

    .forgot-password-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #007bff;
      transition: width 0.3s ease;
    }

    .forgot-password-link:hover::after {
      width: 100%;
    }

    .forgot-password-link:hover {
      color: #0056b3;
    }

  .btn-login {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(3, 67, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    position: relative;
  }

    .btn-login::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-login:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(3, 67, 116, 0.4);
    }

      .btn-login:hover::before {
        width: 300px;
        height: 300px;
      }

    .btn-login:active {
      transform: translateY(-1px);
    }

  .btn-text {
    position: relative;
    z-index: 1;
  }

  .btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .btn-login:hover .btn-icon {
    transform: translateX(3px);
  }

  .login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #ddd;
    font-size: 13px;
  }

    .login-divider::before,
    .login-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background-color: #e0e0e0;
    }

    .login-divider span {
      padding: 0 12px;
      color: #999;
      font-weight: 600;
    }

  .login-footer {
    text-align: center;
  }

  .signup-prompt {
    font-size: 14px;
    color: #555;
    margin: 0;
  }

  .signup-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
  }

    .signup-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #007bff;
      transition: width 0.3s ease;
    }

    .signup-link:hover {
      color: #0056b3;
    }

      .signup-link:hover::after {
        width: 100%;
      }

  .form_login h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #034374;
    letter-spacing: -0.5px;
  }

  .form_login form {
    width: 100%;
  }

  .user_login {
    padding: 0px;
    border: 1px solid #ddd;
    margin: 0.8rem 0 1.2rem 0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
  }

    .user_login:focus-within {
      border-color: #034374;
      box-shadow: 0 0 0 3px rgba(3, 67, 116, 0.1);
    }

  .form_login form .user_login input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 12px 14px;
    background-color: transparent;
  }

  .emainum {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }

    .emainum a {
      font-size: 18px;
      font-weight: 500;
      font-family: "Quicksand", Sans-serif;
      color: #fff;
    }

  .closes {
    cursor: pointer;
  }

  .signup {
    margin: 2rem 0 1.5rem 0;
  }

    .signup input {
      border: none;
      outline: none;
      padding: 12px 32px;
      background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
      color: #fff;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }

      .signup input:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
      }

  .not_account p {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
  }

    .not_account p a {
      font-size: 16px;
      text-decoration: none;
      font-weight: 700;
      color: #007bff;
      transition: all 0.3s ease;
      position: relative;
    }

      .not_account p a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #007bff;
        transition: width 0.3s ease;
      }

      .not_account p a:hover::after {
        width: 100%;
      }

  .loginheare {
    font-size: 12px;
    color: #555;
    margin-top: 1.3rem;
  }

    .loginheare a {
      font-size: 12px;
      color: #555;
      padding-right: 8px;
      padding-left: 3px;
    }

  #error-message {
    font-size: 14px;
  }
  /* ===========================
   DASHBOARD & PROFILE
   =========================== */
  .dashboardhead {
    font-size: 24px;
    font-weight: bold;
  }

  .dashboard_profile {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .profiles a {
    color: #555;
    font-weight: 500;
    font-size: 17px;
    font-family: "Nirmala UI", sans-serif, 'Poppins';
  }

  .all_profileslist li a {
    color: #555;
    font-weight: 500;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
  }

  .all_profileslist li {
    padding: 4.5px 12px;
    display: flex;
    align-items: center;
  }

  .all_profileslist ul li {
    display: flex;
    align-items: center;
  }

  .listactive li .active {
    color: #034374;
  }

  .profileimg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }

  .topmargin {
    padding: 2rem 0px 2rem 0px;
    border: 1px solid gainsboro;
    margin-bottom: 2rem;
  }

  .card_padding {
    padding: 15px;
  }

  .card_sec {
    position: relative;
    margin-top: 3rem;
  }

    .card_sec a {
      color: #333;
    }

  .hownumber {
    display: flex;
    justify-content: flex-end;
  }

  .mini_card_logo {
    position: absolute;
    top: -1.8rem;
    left: 10%;
    width: 100%;
    max-width: 90px;
    height: 100%;
    max-height: 90px;
    background: linear-gradient(135deg, #224662 0%, #034374 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(34, 70, 98, 0.3);
  }

    .mini_card_logo span i {
      font-size: 3rem;
      color: #fff;
    }

  .colorspink {
    background: palevioletred !important;
  }

  .yellowcolor {
    background: #007bff !important;
  }

  .green_colors {
    background-color: #57af5b;
  }

  .light_yellow {
    background-color: #fea11e;
  }

  .orange_coror {
    background-color: #E65A15;
  }

  .detail_no p:first-child {
    color: #555;
    font-size: 15px;
  }

  .detail_no .numbers {
    text-align: center;
    font-size: 2rem;
  }

  .foot-4 p {
    font-size: 13px;
  }

  .top_margin {
    margin-top: 3rem;
  }

  .mainMenu {
    position: relative;
    display: inline-block;
  }

  .sub_menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: auto;
    background-color: #fff;
    width: auto;
    max-width: 200px;
    min-width: 150px;
    z-index: 11001;
    text-align: left;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
    margin: 0;
    margin-top: 5px;
    padding: 0;
  }

  .subminu2 a:hover {
    color: #034374;
  }

  .subminu2:hover .sub_menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .sub_menu {
  }

    .sub_menu li {
      margin: 0;
      padding-right: 0px;
      list-style: none;
      border-bottom: 1px solid #eee;
    }

      .sub_menu li:last-child {
        border-bottom: none;
      }

      .sub_menu li a {
        font-size: 14px;
        width: 100%;
        text-align: left;
        padding: 10px 15px;
        display: block;
        color: #333;
        transition: all 0.2s ease;
      }

        .sub_menu li a:hover {
          background-color: #f5f5f5;
          color: #007bff;
        }

  .profilewidth {
    position: absolute;
    top: 100%;
    background-color: #fff;
    width: 320px;
    right: 0;
    margin-top: 5px;
    z-index: 10000;
    text-align: center;
    border-radius: 5px;
    padding: 30px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

    .profilewidth li label,
    .profilewidth li a {
      font-size: 13px;
    }

  .listprofile {
    cursor: pointer;
  }

  .user_ {
    padding: 0 10px;
  }

  .user_img {
    padding-left: 10px;
  }

    .user_img img {
      width: 75px;
      height: 75px;
      border-radius: 50%;
    }

  .main_profile {
    height: fit-content;
    text-align: left;
  }

    .main_profile h3 {
      font-size: 16px;
      margin-bottom: 0px;
    }

  .admipositon {
    font-size: 12px;
  }

  .user_Email {
    font-size: 14px;
  }

  .editlogo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    .editlogo i {
      font-size: 1.4rem;
    }

  .edit_ppofile {
    margin-top: 2rem;
    padding-left: 10px;
  }

  .edit_ppofiles h3 {
    font-size: 17px;
    margin-bottom: 0px;
  }

  .edit_ppofiles p {
    font-size: 12px;
  }

  .logoutProfuile {
    padding: 0 10px;
    margin-top: 2rem;
  }

    .logoutProfuile button {
      width: 100%;
      padding: 9px 0;
      text-align: center;
      border: none;
      outline: none;
      background-color: #007bff;
      color: #fff;
    }
  /* ===========================
   FORMS & INPUTS
   =========================== */
  .headding_top {
    padding: 1rem 0 1.5rem 0;
  }

    .headding_top h1 {
      font-size: 19px;
      font-weight: bold;
    }

  .form_pad {
    padding: 15px;
    border: 1px solid gainsboro;
  }

  .myform {
    display: flex;
    gap: 10%;
  }

  .inbox {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

    .inbox label {
      font-size: 15px;
    }

    .inbox select,
    .inbox input {
      width: 60%;
      padding: 4px 10px;
      background-color: ghostwhite;
      outline-color: #555;
      border: 1px solid #b3b3b3;
    }

    .inbox optgroup {
      font-size: 15px;
      color: #333;
    }

  .p23 {
    padding: 5px 0;
  }

    .p23:hover {
      background-color: ghostwhite;
    }

  .submitsform {
    padding: 12px 32px;
    outline: none;
    border: none;
    background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 67, 116, 0.3);
    width: 100%;
  }

    .submitsform:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(3, 67, 116, 0.4);
    }

    .submitsform:active {
      transform: translateY(0);
    }

  .submitsbox {
    margin: 2rem 1rem;
  }

  .submitsignupform {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }

    .submitsignupform input {
      width: 100%;
      max-width: 80px;
      padding: 9px 0;
      border: none;
      outline: none;
      color: #fff;
      border-radius: 3px;
    }

  .pri2 {
    background-color: #007bff;
  }

  .dan4r {
    background-color: #dc3545;
  }

  .inputbox_detail {
    display: flex;
    flex-direction: column;
    gap: 3.5px;
  }

    .inputbox_detail label {
      font-size: 14px;
      color: #333;
    }

    .inputbox_detail input,
    .inputbox_detail select {
      padding: 2.5px 10px;
      font-size: 14px;
      max-width: 95px;
      outline-color: #333;
    }

  .checkbox {
    width: 20px;
    height: 20px;
  }

  .boxfl {
    margin-bottom: 1rem;
    width: 60%;
    display: flex;
    justify-content: space-between;
  }

  .lav2 {
    font-size: 15px;
    color: #333;
  }

  .checkedbox {
    border: 1px solid #0d6efd !important;
  }

  .own_home {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    margin-bottom: 1.8rem;
  }

  .yourownhome,
  .yourflate,
  #home2 {
    display: none;
  }

  .opw1 {
    width: 45%;
  }

  .w45 {
    width: 45%;
  }

  .ind100 {
    width: 100%;
  }

    .ind100 select optgroup,
    .ind100 select option {
      font-size: 12px;
    }

  .minitext {
    font-size: 10px;
    margin-bottom: 0px;
  }

  .inbocheckbox {
    /* reserved for flex behavior */
  }

  .inputarea {
    display: none;
  }

  .step2 {
    display: flex;
    gap: 25px;
    margin-bottom: 1.5rem;
  }

    .step2 label,
    .step2 input {
      font-size: 13.9px;
    }

    .step2 input {
      padding: 3px 5px;
    }

  .px1 {
    flex-direction: row;
    gap: 45px;
    margin-bottom: 1.8rem;
  }

  .main_boxs {
    padding: 20px;
    margin: 2rem 0;
  }

  .btn-upda {
    background: #034374 !important;
    color: #fff !important;
  }

  .formsubmitcheck {
    margin-top: 1rem;
  }

    .formsubmitcheck span input {
      width: 15px;
      height: 15px;
    }

  .confirmedcheck {
    margin-left: 10px;
  }

    .confirmedcheck label {
      font-size: 14px;
    }

  .passwordshow i {
    color: #555;
    cursor: pointer;
  }

  .textareas {
    outline: none;
    border: 1px solid gainsboro;
    padding: 3px 5px;
    height: 60px;
  }
  /* ===========================
   TABLES
   =========================== */
  .tabledata {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
  }

    .tabledata th,
    .tabledata td {
      border: 1px solid #e0e0e0;
      text-align: left;
      padding: 14px 16px;
    }

    .tabledata th {
      background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
      color: #ffffff;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.5px;
    }

    .tabledata tr:nth-child(even) {
      background-color: #f8f9fa;
    }

    .tabledata tr:hover {
      background-color: #f0f0f0;
      transition: background-color 0.2s ease;
    }

  .tableCard {
    padding: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    min-height: auto;
  }

  .headingasssessment h6 {
    font-size: 21px;
    font-weight: 600;
    padding-bottom: 0.5rem;
  }

  .editsee a {
    color: #333;
  }

    .editsee a:hover {
      color: #007bff;
    }

  .completedtask {
    color: #0eaa5a;
  }

  .pendingtask {
    color: red;
  }
  /* ===========================
   SIGN UP PAGE
   =========================== */
  .signip_start h1 {
    font-size: 30px;
    font-weight: bold;
    padding: 0 0 1rem 15px;
  }

  .pForm {
    padding: 20px;
    border: 1px solid gainsboro;
  }

  .mysignup {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
  }

    .mysignup input {
      padding: 10px 10px;
    }

  .containerswid {
    max-width: 1000px;
    margin: 2rem auto;
  }
  /* ===========================
   COPYRIGHT & FOOTER
   =========================== */
  .copyright {
    padding: 12px 30px;
    background-color: #4876b7;
    color: #fff;
    margin-top: auto;
    flex-shrink: 0;
  }

    .copyright p {
      font-size: 14px;
    }
  /* ===========================
   RECEIPTS & DOCUMENTS
   =========================== */
  .moneyReceipt {
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 5px;
  }

  .bordersections {
    border: 1px solid #555;
  }

  .bgLogo {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://shahpur.toponsearch.in/wp-content/uploads/2024/09/logo2.jpg');
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center center;
    z-index: -10;
  }

  .receiptPaddingElemnt {
    padding: 1.5rem 2rem;
  }

  .form_receipt_heading {
    font-size: 21px;
    font-weight: 600;
    color: #034374;
  }

  .detailFormPAY p,
  .detailFormPAY span {
    font-size: 13.5px;
    color: #333;
  }

  .Villagetext {
    font-weight: 500;
    color: black !important;
  }

  .receiptHeading {
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
  }

  .paddingLeftElement {
    padding: 0 12px 0 12px;
    border-left: 1px solid #333;
  }

    .paddingLeftElement:first-child {
      border-left: none;
    }

  .PaymentElement {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #034374;
  }

  .gfd {
    font-weight: 600;
  }

  .authontication {
    margin-top: 6rem;
  }

  .textauther {
    font-size: 13px;
    font-weight: bold;
  }

  .Dtext {
    font-size: 15px;
    line-height: 2.6rem;
  }

  .formans {
    font-weight: 600;
  }

  .lablenames {
    min-width: 150px;
  }

  .signatureimg {
    width: 10%;
  }

  .subheadG h3 {
    font-size: 16px;
    text-align: center;
    margin: 1rem 0 1.8rem 0;
  }

  .passportsize {
    width: 140px;
    height: 150px;
  }

  .ckebox-dark input,
  .ckebox-dark label {
    font-weight: bold;
  }
  /* Demand Letter & Collections */
  .dtext2 {
    line-height: 1.5rem;
    font-size: 14px;
  }

  .teaxtdetailElement {
    font-size: 14px;
  }

  .table_headingElement th {
    font-weight: 600;
  }

  .tabletrfont tr {
    font-size: 14px;
    text-align: center;
  }

  .paddingTableElements th,
  .paddingTableElements td {
    padding: 6px;
  }

  .fontSize14 {
    font-size: 14px;
  }

  .scrollbarTrans::-webkit-scrollbar {
    overflow-x: hidden;
  }

  .fontweight-1,
  .fontweight-1 span {
    font-weight: bold;
  }

  .textLeftF tr {
    text-align: left !important;
  }

  .bgtableElement {
    background-color: gainsboro;
  }

    .bgtableElement th {
      padding: 5px 0;
    }

  .borderTR tr {
    border-bottom: 1px solid #555;
  }

    .borderTR tr td {
      padding: 2px 0;
    }

  .totalAndNAmeamount {
    font-size: 15px;
    padding: 5px 0 !important;
  }

  .printForm {
    width: 50px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 1px solid #034374;
    border-radius: 3px;
    color: #034374;
    cursor: pointer;
  }
  /* QR Styles */
  .lablenamesQR {
    width: 100%;
  }

  .wqr {
    width: 100%;
  }

  .qrTDTransparent td,
  .qrTDTransparent th {
    font-size: 14px;
    background: transparent !important;
  }

  .d30p {
    display: flex;
  }

  .maxw35 {
    width: 100%;
    max-width: 40%;
  }

  .datanamesElement div {
    font-size: 14px;
  }

  .hgr2 {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
  }

  .qrimage {
    width: 100%;
  }
  /* Thank You Page */
  .thankyou {
    width: 100%;
    display: flex;
    padding: 6rem 0;
    justify-content: center;
    align-items: center;
  }

  .divtank img {
    width: 20%;
  }

  .divtank h1,
  .divtank h4 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  .gohome {
    padding: 10px 20px;
    background-color: #034374;
    border-radius: 5px;
    color: #fff;
  }

  .card-area {
    padding: 1rem 20px;
  }

  .card_inbox input,
  .card_inbox select {
    padding: 5px 8px;
    border-radius: 5px;
    outline: none;
    border: 1px solid gainsboro;
    font-size: 15px;
  }

  .card_inbox label {
    font-size: 15px;
  }

  .modaldilog {
    width: 100%;
    max-width: 850px !important;
    height: 100%;
  }

  .Disapproved,
  .Disapproved i {
    color: rgb(242, 79, 79) !important;
    font-size: 15px;
    cursor: pointer;
  }

    .Disapproved i,
    .Approved i {
      padding-right: 2px;
    }

  .Approved,
  .Approved i {
    color: #034374 !important;
    font-size: 15px;
    cursor: pointer;
  }
  /* Surveyor Styles */
  .addsurveyor a {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
  }

    .addsurveyor a:hover {
      color: #fff;
    }

  .max-height {
    min-height: 39vh;
  }

  .max-height2 {
    min-height: 50vh;
  }

  .section_head {
    width: 100%;
    align-items: flex-end;
  }

  .containerFileAssement {
    max-width: 950px;
    padding: 0px;
  }

  .dropdown-menu {
    z-index: 1100;
  }
  /* Site Navbar */
  .site-navbar .site-navigation .site-menu .has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
  }

  .site-navbar .site-navigation .site-menu .has-children {
    position: relative;
  }

    .site-navbar .site-navigation .site-menu .has-children:hover,
    .site-navbar .site-navigation .site-menu .has-children:focus,
    .site-navbar .site-navigation .site-menu .has-children:active {
      cursor: pointer;
    }

      .site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
      .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
      .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        margin-top: 0px;
        visibility: visible;
        opacity: 1;
      }

    .site-navbar .site-navigation .site-menu .has-children .dropdown {
      visibility: hidden;
      opacity: 0;
      top: 100%;
      position: absolute;
      text-align: left;
      -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
      box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
      padding: 0px 0;
      margin-top: 20px;
      margin-left: 0px;
      background: #fff;
      -webkit-transition: 0.2s 0s;
      -o-transition: 0.2s 0s;
      transition: 0.2s 0s;
      border-radius: 4px;
    }

      .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
        bottom: 100%;
        left: 20%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #fff;
        border-width: 10px;
        margin-left: -10px;
      }

  .category-title {
    flex-basis: 100%;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--bs-info-text-emphasis);
    font-size: large;
  }
  /* ===========================
   MEDIA QUERIES
   =========================== */
  /* Extra small screens (400px) */
  @media (max-width: 400px) {
    .containerFileAssement {
      padding: 0px;
    }

    .inbox select,
    .inbox input {
      font-size: 10.5px;
      padding: 2px 4px;
    }

    .inbox label {
      font-size: 10.5px;
    }

    .copyright p {
      font-size: 10px;
    }

    .lav2 {
      font-size: 10.5px;
    }

    .emainum a {
      font-size: 10px;
    }

    .social_link li {
      width: 18px;
      height: 18px;
      font-size: 10px;
    }

    .social_link {
      gap: 2px;
    }
    /* Login page mobile extra-small */
    .login-container {
      justify-content: center;
      padding: 10px;
      background-image: none;
      background: rgba(255, 255, 255, 0.95);
      height: auto;
    }

      .login-container::before {
        display: none;
      }

      .login-container::after {
        display: none;
      }

    .login-card {
      max-width: 100%;
      padding: 30px 20px;
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      height: 50%;
    }
  }
  /* Small screens (512px) */
  @media (max-width: 512px) {
    .listactive {
      flex-wrap: wrap;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .profilewidth {
      width: 250px;
    }

    .logoSite {
      width: 38%;
    }

    .mid_detail {
      margin-bottom: 0.5rem;
    }

      .mid_detail a h3 {
        font-size: 15px;
      }

      .mid_detail a p {
        font-size: 13px;
      }

    .user_img img {
      width: 55px;
      height: 55px;
    }

    .main_profile h3 {
      font-size: 13px;
    }

    .user_Email i,
    .user_Email p {
      font-size: 13px;
    }

    .editlogo {
      width: 25px;
      height: 25px;
    }

      .editlogo i {
        font-size: 0.8rem;
      }

    .edit_ppofiles h3 {
      font-size: 14px;
    }

    .edit_ppofiles p,
    .admipositon {
      font-size: 10px;
    }

    .all_profileslist li a {
      font-size: 12.5px;
    }

    .all_profileslist {
      width: 100%;
    }

    .istprofile span:nth-child(2) {
      font-size: 16px;
    }

    .all_profileslist li {
      padding: 4px 5px;
    }

    .step2 {
      margin-bottom: 0.3rem;
    }

    .inputbox_detail {
      width: 30%;
      margin-top: 0.6rem;
    }
    /* Login page mobile small */
    .login-container {
      justify-content: center;
      padding: 15px;
      background-image: none;
      background: rgba(255, 255, 255, 0.95);
    }

      .login-container::before {
        background: rgba(255, 255, 255, 0.95);
      }

      .login-container::after {
        display: none;
      }

    .login-card {
      max-width: 360px;
      padding: 35px 25px;
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      height: 500px;
    }
  }
  /* Medium screens (600px) */
  @media (max-width: 600px) {
    .containerFileAssement {
      padding: 0px;
    }

    .all_profileslist li {
      padding: 4.5px 6px;
    }

    .mynavbars {
      padding: 5px;
    }

    .logoSite {
      width: 35%;
    }

    .down_header .mid_detail {
      max-width: 260px;
    }

    .profileSectionElement {
      padding: 0 20px;
    }

    .mid_detail a h3 {
      font-size: 17px;
    }

    .mid_detail a p {
      font-size: 14px;
    }

    .s-sidebar-header-link {
      margin-right: 0rem !important;
      font-size: 20px;
    }

    .mid_detail {
      padding-left: 0px !important;
    }

    .mysignup {
      gap: 3%;
    }

    .pForm {
      padding: 8px;
      border: 1px solid gainsboro;
    }

    .boxfl {
      flex-wrap: wrap;
      width: 100%;
      margin-bottom: 1rem;
    }

    .confirmedcheck label {
      font-size: 12px;
    }

    .step2 label {
      font-size: 9px;
    }

    .step2 input {
      padding: 0.5px 4px;
      font-size: 9px;
    }

    .form_pad {
      padding: 10px 5px;
    }

    .subminu li a {
      font-size: 13px;
    }

    .form_login {
      height: fit-content;
    }

    .login_form {
      align-items: center;
    }

    .not_account p {
      font-size: 15px;
    }

      .not_account p a {
        font-size: 15.5px;
      }

    .dashboardhead {
      font-size: 20px;
    }

    .detail_no p:first-child {
      font-size: 14px;
    }

    .form_receipt_heading {
      font-size: 18px;
    }

    .detailFormPAY p,
    .detailFormPAY span {
      font-size: 12.5px;
    }

    .lablenames {
      min-width: 116px;
    }

    .paddingLeftElement {
      padding: 0 7px 0 7px;
    }

    .PaymentElement {
      font-size: 16px;
    }

    .Dtext {
      font-size: 13px;
      line-height: 2rem;
    }

    .authontication {
      margin-top: 4rem;
    }

    .datanamesElement div {
      font-size: 13px;
    }

    .widover4 {
      width: 600px !important;
    }

    .receiptPaddingElemnt {
      padding: 1.5rem 1rem;
    }

    .signa {
      flex-direction: column;
    }

    .signatureimg {
      width: 20%;
    }

    .paddingTableElements th,
    .paddingTableElements td {
      padding: 2.5px;
    }

    .card-area {
      padding: 1rem 10px;
    }

    .addsurveyor a {
      padding: 6px 11px;
      font-size: 14px;
    }

    .headingasssessment h6 {
      font-size: 17px;
    }

    .tabledata th {
      font-size: 14.5px;
    }

    .tabledata td {
      font-size: 13.5px;
    }

    .tableCard {
      overflow-x: scroll;
    }

    .emainum {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      gap: 0;
      text-align: left;
    }

    .top_header {
      align-items: center;
    }

    .submitsignupform input {
      font-size: 14px;
      padding: 4px 0;
    }

    .social_link li {
      width: 25px;
      height: 25px;
    }

    .emainum a {
      font-size: 14px;
    }

    .log_inout {
      margin-left: 27%;
    }

    .p23 {
      padding: 0px;
    }

    .inbox {
      width: 47%;
      margin-bottom: 0.8rem;
    }

    .myform {
      gap: 6%;
    }

    .inbox label {
      font-size: 12px;
    }

    .inputbox_detail label {
      font-size: 9px;
    }

    .inputbox_detail input,
    .inputbox_detail select {
      padding: 0.5px 4px;
      font-size: 9px;
    }

    .inputbox_detail select {
      padding: 2px 4px;
    }

    .lav2 {
      font-size: 12px;
    }

    .inbox select,
    .inbox input {
      font-size: 12px;
      padding: 2px 5px;
    }

    .headding_top {
      padding: 0.4rem 0 1rem 0;
    }

    .submitsbox {
      margin: 1rem 1rem;
    }

    .submitsform {
      padding: 5px 17px;
      font-size: 13px;
    }

    .navbars {
      max-width: 250px;
    }

    .login_persions {
      font-size: 16px;
      padding: 6px 0;
    }

    .headding_top h1 {
      font-size: 15.2px;
    }

    .sid_nav .listname {
      font-size: 15px;
    }

    .boxfl {
      gap: 0px !important;
      justify-content: space-between;
    }

    .w45 {
      width: 47%;
    }
    /* Login page mobile landscape */
    .login-container {
      justify-content: center;
      padding: 15px;
      background-image: none;
      background: rgba(255, 255, 255, 0.95);
      height: auto;
    }

      .login-container::before {
        display: none;
      }

      .login-container::after {
        display: none;
      }

    .login-card {
      max-width: 380px;
      padding: 35px 28px;
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      height: auto;
    }
  }
  /* Tablets (768px) */
  @media (max-width: 768px) {
    .down_header {
      padding: 5px 0 0px 0;
    }

    .centerMobileImg {
      display: flex;
      justify-content: center;
    }

    .logoSite {
      width: 40%;
    }

    .same_wid {
      width: 100%;
      max-width: 100%;
    }

    .down_header .login_details {
      max-width: 100px !important;
    }

    .down_header .mid_detail {
      max-width: 260px;
    }

    .mid_detail a h3 {
      font-size: 20px;
      margin-bottom: 0px;
      margin-top: 1rem;
    }

    .mid_detail a p {
      font-size: 15px;
    }

    .mid_detail {
      margin-bottom: 1.5rem;
      max-width: 100%;
      display: flex;
      justify-content: flex-start;
      padding-left: 20px;
    }

    .log_inout {
      margin-left: 35%;
    }

    .down_header .row {
      width: 100%;
    }

    .dashboard_profile {
      flex-wrap: wrap;
      gap: 10px;
    }

    .all_profileslist li a {
      font-size: 14px;
    }

    .boxfl {
      width: 100%;
    }
    /* Login page for tablet */
    .login-container {
      justify-content: center;
      background-image: none;
      background: rgba(255, 255, 255, 0.95);
    }

      .login-container::before {
        display: none;
      }

    .login-card {
      max-width: 450px;
      width: 100%;
      padding: 40px 35px;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }
  }
  /* Large screens (992px) */
  @media (max-width: 992px) {
    .dashnoard {
      margin-top: 0px !important;
    }

    .step2 {
      display: block;
    }

    .px1 {
      flex-direction: column;
      gap: 0px;
      margin-bottom: 1.8rem;
    }

    .closebutton {
      display: none;
    }

    .navbars {
      position: relative;
      top: 56px;
      left: 0;
      right: 0;
      width: 100%;
      height: auto;
      z-index: 1020;
      display: flex;
      flex-wrap: wrap;
      overflow: visible;
    }

    .sid_nav {
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .menucoll {
      display: none;
    }

    .sid_nav .myullist {
      display: flex;
      flex-direction: row;
      gap: 0;
      flex-wrap: wrap;
    }

    .sid_nav .listname {
      border-left: 1px solid #fff;
    }

    .sid_nav nav ul li {
      display: inline-block;
      margin-bottom: 0;
    }

    .mid_detail a h3 {
      font-size: 25px;
    }

    .mid_detail a p {
      font-size: 16px;
    }

    .login_persions {
      font-size: 18px;
      padding: 8px 0;
    }

    .down_header {
      padding: 20px 0;
    }
  }
  /* Extra large screens (1200px) */
  @media (min-width: 1200px) {
    .s-main {
      padding-left: 10px;
      padding-right: 10px;
    }

    section.content {
      margin-top: 70px;
      padding: 20px;
      height: calc(100vh - 280px);
    }

    .col-lg-25 {
      flex: 0 0 auto;
      width: 20%;
    }
    /* Login Page Enhancements */
    .login-container {
      justify-content: flex-end;
      align-items: center;
      padding-right: 80px;
      background-image: none;
      background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
      overflow-y: auto;
    }

      .login-container::before {
        background: transparent;
      }

      .login-container::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 55%;
        height: 100%;
        background-image: url('../../assets/images/login-bg.jpg');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-attachment: fixed;
        z-index: 0;
      }

    .login-container {
      justify-content: flex-end;
      padding-right: 0;
      background-image: url('../../assets/images/login-bg.jpg');
      background-size: cover;
      background-position: left center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

      .login-container::before {
        width: 50%;
        background: rgba(255, 255, 255, 0.95);
      }

    .login-card {
      max-width: 50%;
      width: 50%;
      padding: 60px 50px;
      margin-left: 0;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: auto;
      min-height: 60vh;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-right: 40px;
    }
    /* Dashboard and Panels */
    .s-Panel {
      padding: 2.5rem;
    }

    .dashboard_profile {
      max-width: 900px;
      padding: 5px;
    }
    /* Tables */
    .tabledata th,
    .tabledata td {
      padding: 16px 18px;
    }

    .tabledata th {
      font-size: 13px;
    }

    .tabledata td {
      font-size: 14px;
    }
    /* Form Improvements */
    .form-fields {
      margin-bottom: 28px;
    }

    .inbox {
      width: 48%;
    }

      .inbox select,
      .inbox input {
        width: 65%;
        padding: 8px 12px;
        font-size: 14px;
      }
    /* Cards and Spacing */
    .card_sec {
      margin-top: 3.5rem;
    }

    .card_padding {
      padding: 20px;
    }

    .submitsform {
      padding: 14px 36px;
      font-size: 16px;
    }
    /* Header and Navigation */
    .down_header {
      max-width: 1400px;
      padding: 0 20px;
    }

    .mid_detail a h3 {
      font-size: 28px;
    }

    .mid_detail a p {
      font-size: 18px;
    }
    /* Typography */
    .headding_top h1 {
      font-size: 21px;
    }

    .dashboardhead {
      font-size: 26px;
    }
    /* Modal and Dialog */
    .modaldilog {
      max-width: 900px !important;
    }
    /* Container Widths */
    .containerswid {
      max-width: 1100px;
    }

    .s-container-tight {
      max-width: 100%;
    }
  }
  /* High-res screens (768px+) */
  @media (min-width: 768px) {
    section.content {
      min-height: calc(100vh - 250px);
      margin-top: 60px;
      height: calc(100vh - 250px);
    }

    .full-height-page section.content {
      height: calc(100vh - 250px);
    }
  }
  /* Print Media */
  @media print {
    header, .mynavbars, .printForm, .no-print, .no-print * {
      display: none !important;
    }

    /* Allow content to flow naturally for printing */
    body, html {
        height: auto;
        min-height: initial;
        overflow: visible !important;
    }

    main, section.content {
        height: auto;
        max-height: none;
        overflow: visible !important;
        flex: none;
        margin-top: 0;
    }
  }
  /* ===========================
   LOGIN PAGE RESPONSIVE
   =========================== */
  @media (min-width: 1024px) {
    .login-container {
      justify-content: flex-end;
      overflow-y: auto;
    }

    .login-card {
      max-width: 480px;
      margin-left: 30px;
    }

    .login-container::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 52%;
      height: 100%;
      background-image: url('../../assets/images/login-bg.jpg');
      background-size: cover;
      background-position: left center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      z-index: 0;
    }
  }

  @media (min-width: 1440px) {
    .login-container {
      padding-right: 120px;
      overflow-y: auto;
    }

      .login-container::after {
        width: 58%;
        background-position: left center;
      }

    .login-card {
      max-width: 500px;
      padding: 50px 45px;
      margin-left: 50px;
    }
    /* Enhanced spacing for larger screens */
    section.content {
      padding: 25px;
      height: calc(100vh - 200px);
    }

    .s-Panel {
      padding: 3rem;
    }

    .down_header {
      max-width: 1450px;
    }

    .containerswid {
      max-width: 1200px;
    }
    /* Form enhancements */
    .myform {
      gap: 15%;
    }

    .inbox {
      width: 45%;
    }
    /* Table enhancements */
    .tabledata th,
    .tabledata td {
      padding: 18px 20px;
      font-size: 15px;
    }
    /* Typography */
    h1 {
      font-size: 2.8rem;
    }

    h2 {
      font-size: 2.2rem;
    }

    h3 {
      font-size: 1.8rem;
    }
  }
  /* ===========================
   ROADNAME PAGE MODERN REDESIGN
   =========================== */
  /* Apply a background gradient and better font to the page */
  .s-Settings-RoadName-Index .s-Panel {
    background: linear-gradient(to top, #f9fafb, #ffffff);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
  /* Modernize the title */
  .s-Settings-RoadName-Index .grid-title {
    font-size: 2rem;
    font-weight: 800;
    color: #034374;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
  }
  /* Style the toolbar buttons */
  .s-Settings-RoadName-Index .tool-button {
    background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(3, 67, 116, 0.2);
    transition: all 0.3s ease;
  }

    .s-Settings-RoadName-Index .tool-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(3, 67, 116, 0.3);
    }

    .s-Settings-RoadName-Index .tool-button .icon {
      margin-right: 6px;
    }
    /* Refresh button specific style */
    .s-Settings-RoadName-Index .tool-button.refresh-button {
      background: #ffffff;
      color: #034374;
      border: 1px solid #e0e0e0;
    }

      .s-Settings-RoadName-Index .tool-button.refresh-button:hover {
        background: #f8f9fa;
        border-color: #034374;
      }
  /* Grid header styling */
  .s-Settings-RoadName-Index .slick-header-columns {
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
  }

  .s-Settings-RoadName-Index .slick-header-column {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
  }
  /* Grid row styling */
  .s-Settings-RoadName-Index .slick-row {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
  }

    .s-Settings-RoadName-Index .slick-row:hover {
      background-color: #f5f7fa;
    }

  .s-Settings-RoadName-Index .slick-cell {
    padding: 16px;
    font-size: 14px;
    color: #555;
  }
  /* Quick Filters */
  .s-Settings-RoadName-Index .s-QuickFilterBar {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
  }

  .s-Settings-RoadName-Index .quick-filter-item .editor {
    border-radius: 8px;
  }
  /* ===========================
   ROADNAME DIALOG MODERN REDESIGN
   =========================== */

  .s-Settings-RoadNameDialog .ui-dialog-titlebar {
    background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
    color: #ffffff;
    border-bottom: none;
    padding: 1rem 1.5rem;
  }

  .s-Settings-RoadNameDialog .ui-dialog-title {
    font-size: 18px;
    font-weight: 600;
  }

  .s-Settings-RoadNameDialog .ui-dialog-content {
    padding: 2rem;
  }

  .s-Settings-RoadNameDialog .s-Form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .s-Settings-RoadNameDialog .field .caption {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
  }

  .s-Settings-RoadNameDialog .editor {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px 14px;
  }

    .s-Settings-RoadNameDialog .editor:focus {
      border-color: #034374;
      box-shadow: 0 0 0 3px rgba(3, 67, 116, 0.15);
    }

  .s-Settings-RoadNameDialog .ui-dialog-buttonpane .ui-button {
    background: linear-gradient(135deg, #034374 0%, #026ba6 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

    .s-Settings-RoadNameDialog .ui-dialog-buttonpane .ui-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(3, 67, 116, 0.3);
    }
