@font-face {
  font-family: gujrati-font;
  src: url(fontstyles.ttf);
}

body {
  font-family: gujrati-font;
  background-color: #e9e9e9;
}

header {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  background-color: #2196f3;
}

.bg-primary {
  background-color: #2196f3 !important;
}

.text-primary {
  color: #2196F3 !important;
}

.bg-grey {
  background-color: lightgrey;
}

.help-info {
  font-size: 13px;
  color: lightslategrey;
  text-align: right;
}

header .text-light {
  font-size: 18px;
}

.modal-header {
  padding: 20px !important;
}

.modal-header,
.heading {
  font-size: 18px;
  margin-bottom: 0;
}

.modal-body {
  padding: 20px !important;
}

.modal-body .form-group {
  margin-bottom: 20px;
}

span.arrow-icon {
  color: #747474;
  position: relative;
  font-size: 20px;
  top: -5px;
  right: 0px;
  margin-left: 15px;
}

.alert-success {
  background-color: #2b982b;
}

.alert-warning {
  background-color: #ff9600;
}

.alert-danger {
  background-color: #cf1f00;
}

#alertMessage {
  word-wrap: break-word;
}

/* custom checkbox */
input.select-checkbox:checked~label {
  background-color: #26a69a;
  width: 20px;
  height: 20px;
  border: none;
}

input.select-checkbox {
  opacity: 0;
  position: absolute;
}

label.custom-checkbox {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid grey;
  transition: .3s ease;
  cursor: pointer;
  margin-right: 6px;
}

input.select-checkbox:checked~label::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  background-color: transparent;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid transparent;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  border-left: 2px solid transparent;
}


/*   --  sidebar --  */
#menulist {
  width: 300px;
  height: 100%;
  padding-bottom: 6rem;
  overflow: scroll;
  left: -300px;
  transition: all 0.5s;
  z-index: 1000;
}

#menulist a:active {
  color: #0d6efd;
}

#menulist .sidebar-item {
  font-size: 14px;
  font-weight: bold;
}

/* button shadow */
.btn.btn-primary,
.btn.btn-info,
.btn.btn-success,
.btn.bg-deep-orange {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12) !important;
}

/* toggle button */
.dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}

/*   -- global declarations  -- */
.bg-deep-orange {
  background-color: #FF5722 !important;
  color: #fff;
}

.form-group input {
  font-size: 14px;
  color: #555;
}

button,
.btn {
  box-shadow: none !important;
  border-radius: 2px !important;
}

label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}

#overlay {
  display: none;
  position: fixed;
  background-color: #000000a3;
  z-index: 100;
  inset: 0 0 0 0;
}

aside li a {
  color: #333;
}

aside li a:hover {
  color: #333;
}

aside div#menulist i {
  color: #747474;
}

.main-content,
.shadow-section {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hover-border:hover {
  color: #23527c;
  text-decoration: underline;
}

.alert {
  font-size: 14px;
}

/* login page */
.login-container {
  width: min(650px, 100%);
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Desktop Header start*/
.ss-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ss-navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-left: auto; */
  flex-shrink: 0;
  width: auto;
}

.ss-navbar-right .ss-bhandar-btn {
  max-width: 220px;
  min-width: 180px;
  overflow: hidden;
}

.ss-bhandar-btn span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Desktop header end */

/* form control 'works for all input fields' >>> 'use same class' */
.form-control {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-group .form-line {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ddd;
}

.form-group .form-line:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  bottom: -1px;
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transition: 0.25s ease-in;
  -o-transition: 0.25s ease-in;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  border-bottom: 2px solid #1f91f3;
}

.form-group .form-line.focused::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0d6efd;
  transform: scale(1);
}

select .search-slt {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}

.form-control[disabled],
.form-control[readonly] {
  cursor: not-allowed;
}

select.selectpicker {
  display: none !important;
}

.search-slt {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  height: calc(3rem + 2px) !important;
  border-radius: 0;
}

.btn:not(.btn-link):not(.btn-circle) {
  border: none;
  font-size: 13px;
  outline: none;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: #1f91f3 !important;
}

.version,
.copyright {
  font-size: 14px;
  color: #555;
}

.copyright a {
  text-decoration: none;
  color: #337ab7;
}

small.col-blue {
  color: #337ab7 !important;
}

form#adv_search_form .col-2 {
  flex: 1 1 210px;
}

/* search page css */
.dropdown-menu {
  z-index: 100;
  border-radius: 0;
  display: none;
}

#menulist::-webkit-scrollbar,
.dropdown-menu.open::-webkit-scrollbar {
  width: 5px;
}

#menulist::-webkit-scrollbar-thumb,
.dropdown-menu.open::-webkit-scrollbar-thumb {
  background-color: #b8b8b8;
  border-radius: 10px;
}

#menulist::-webkit-scrollbar-track-piece,
.dropdown-menu.open::-webkit-scrollbar-track-piece {
  background-color: #eeeeee;
  border-radius: 10px;
}

.dropdown-menu li.selected a,
.dropdown-menu li.selected a {
  background-color: #dddddd;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:hover {
  background-color: #ededed;
}

/* bhandars page css  */
.row .form-line {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.input-group-addon,
.btn-circle {
  border: none;
  outline: none !important;
  overflow: hidden;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50px !important;
}

.custom-col-lg-11 {
  flex: 0 0 auto;
  width: 96.666667%;
}

.custom-col-lg-1 {
  flex: 0 0 auto;
  width: 3.333333%;
  padding: 8px 0 0 0;
}

.bhandars .body {
  font-size: 14px;
  color: #555;
}

.bhandars .body .form-line input {
  font-size: 14px;
}

@media (max-width: 1152px) {
  .custom-col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .custom-col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}

@media (max-width: 767px) {
  .custom-col-lg-11 {
    width: 75%;
  }

  .custom-col-lg-1 {
    width: 25%;
  }
}

/* css for datatable  */
.table-bordered {
  border-top: 1px solid #eee;
}

.table-bordered thead tr th {
  padding: 10px;
  border: 1px solid #eee !important;
  font-size: 14px;
  color: #555555 !important;
}

.table-bordered tbody tr td,
.table-bordered tbody tr th {
  padding: 10px !important;
  border: 1px solid #eee !important;
  vertical-align: middle;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: transparent !important;
}

.table-striped>tbody>tr:nth-of-type(odd):hover,
.table-striped>tbody>tr:nth-of-type(even):hover {
  --bs-table-accent-bg: #f5f5f5 !important;
}

td a {
  text-decoration: none;
  color: #337ab7;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #eee !important;
}

table.dataTable>tbody>tr.selected>* {
  box-shadow: none !important;
  color: #555555 !important;
}

table.dataTable tbody>tr.selected,
table.dataTable tbody>tr>.selected {
  background-color: transparent !important;
}

.dataTables_wrapper .dataTables_length {
  float: right !important;
}

#DataTables_Table_1 thead th:first-child {
  background-image: none !important;
}

@media (max-width: 767px) {
  .dataTables_wrapper .dataTables_length {
    float: none !important;
  }
}

/* books page css  */
.view-book .body {
  font-size: 14px;
  color: #555;
  padding: 20px;
}

.view-book .body .form-line input {
  font-size: 14px;
}

.view-book .form-group,
.add-book .form-group {
  width: 100%;
  margin-bottom: 25px;
}

.add-book [class^="col-sm-"] {
  margin-bottom: 15px;
}

.add-book .form-line input {
  font-size: 14px;
  color: #555;
}

.add-book .form-line input {
  padding-left: 0 !important;
}

.add-book .form-group .help-info {
  float: right;
  font-size: 12px;
  margin-top: 5px;
  color: #999;
}

.addbook-table .btn-info {
  color: #ffff !important;
  background-color: #00b0e4 !important;
  padding: 10px 16px !important;
}

.addbook-table {
  font-size: 14px;
  color: #555;
  padding: 20px;
}

.addbook-table .table>:not(:last-child)>:last-child>* {
  border-bottom-color: #e5e5e5 !important;
}

.addbook-table .table-row th,
.addbook-table tbody td {
  color: #555 !important;
  padding: 10px !important;
}

/* css for model popup */
.modal .modal-header .modal-title {
  font-weight: bold;
  font-size: 16px;
}

.modal .modal-header {
  border: none;
  padding: 15px 25px 5px 25px !important;
}

.modal .modal-content .modal-body {
  color: #777;
  padding: 15px 25px !important;
}

.modal .modal-content .modal-body .form-line input,
.modal .modal-content .modal-body .form-line textarea {
  font-size: 14px !important;
}

.modal-body .row.clearfix {
  margin-bottom: 20px;
}

/* css for import file  */
.btn-success,
.btn-success:hover,
.btn-success:active,
.btn-success:focus {
  background-color: #2b982b !important;
}

/* report pages */

/* deleted books page */
select.table-drop-dwn {
  display: inline-block !important;
  opacity: 1 !important;
  position: static !important;
  width: auto !important;
  padding: 5px !important;
  border: 1px solid grey;
  border-radius: 4px;
  background-color: white;
}

input.outline-none:focus {
  outline: none;
  border-bottom: 2px solid #0d6efd !important;
}

/* members page */
.action-btns {
  padding: 0.5em 1em;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.88em;
  line-height: 1.6em;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  background: linear-gradient(to bottom, #e6e6e61a 0%, #0000001a 100%);
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  outline: none;
  text-overflow: ellipsis;
}

.table-responsive tfoot tr th,
.table-responsive tbody tr td,
.table-responsive .dataTables_info,
.table-responsive #DataTables_Table_1_paginate {
  font-size: 16px;
  color: #555;
}

.table-responsive input[type=search] {
  border: none !important;
  border-bottom: 1px solid #cecece !important;
  border-radius: 0 !important;
  outline: none !important;
}

.table-responsive input[type=search]:focus {
  border-bottom: 2px solid #0d6efd !important;
}

table.dataTable {
  border-bottom: 2px solid #eee;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
  border-top: 1px solid #111 !important;
}

#DataTables_Table_1_wrapper {
  overflow: auto;
}

table#DataTables_Table_1_wrapper tbody tr:nth-child(odd) {
  background-color: #f8f8f8;
}

/* datatble button css */
button.dt-button,
div.dt-button,
a.dt-button,
input.dt-button {
  background: none !important;
  color: #fff !important;
  background-color: #1f91f3 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12) !important;
  border: none !important;
  border-radius: 2px !important;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: auto;
  z-index: 1000;
}

/* custom checkbox */
#members-page input.select-checkbox:checked~label {
  background-color: #1D4ED8;
  border: 2px solid #1D4ED8;
  width: 16px;
  height: 16px;
}

#members-page input.select-checkbox {
  opacity: 0;
  position: absolute;
}

#members-page label.custom-checkbox {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid grey;
  border-radius: 50px;
  transition: .3s ease;
}

#members-page input.select-checkbox:checked~label::before {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  border-radius: 50px;
  border: 2px solid white;
}

/* custom checkbox end here */

/* css for loader  */
#loader-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1001;
  cursor: wait;
}

#overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 15px;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

/* css for progress-bar loader */
.demo-container {
  width: auto;
  margin: auto;
}

.demo-progress-bar {
  height: 4px;
  background-color: rgba(5, 114, 206, 0.2);
  width: 100%;
  overflow: hidden;
}

.demo-progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(5, 114, 206);
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }

  40% {
    transform: translateX(0) scaleX(0.4);
  }

  100% {
    transform: translateX(100%) scaleX(0.5);
  }
}

.highlight {
  color: blue;
  background-color: yellow;
}

/* outstanding books css */
#outstanding-books-section [type="checkbox"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

#outstanding-books-section [type="checkbox"]+label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  user-select: none;
}

#outstanding-books-section [type="checkbox"]+label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
  transition: .2s;
}

#outstanding-books-section [type="checkbox"]:checked+label:before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #26a69a;
  border-bottom: 2px solid #26a69a;
  transform: rotate(40deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}

/* About us */
@keyframes radar-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

@keyframes pin-ping {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.cursor-blink {
  animation: cursor-blink 1s step-end infinite;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 28px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #E2E8F0, transparent);
}

.section-divider span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  white-space: nowrap;
}

/* High-Fidelity Glassmorphic Impact Cards */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 640px) {
  .impact-card {
    aspect-ratio: 1 / 1;
  }
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.impact-card-blue {
  background: radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.06) 0%, transparent 65%), rgba(255, 255, 255, 0.45);
}

.impact-card-teal {
  background: radial-gradient(circle at bottom right, rgba(13, 148, 136, 0.06) 0%, transparent 65%), rgba(255, 255, 255, 0.45);
}

.impact-card-orange {
  background: radial-gradient(circle at bottom right, rgba(234, 88, 12, 0.06) 0%, transparent 65%), rgba(255, 255, 255, 0.45);
}

.impact-card-purple {
  background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.06) 0%, transparent 65%), rgba(255, 255, 255, 0.45);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.card-icon-box-blue {
  background: #EEF2FF;
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.05);
}

.card-icon-box-teal {
  background: #E6FDF9;
  color: #0D9488;
  border: 1px solid rgba(13, 148, 136, 0.05);
}

.card-icon-box-orange {
  background: #FFF7ED;
  color: #EA580C;
  border: 1px solid rgba(234, 88, 12, 0.05);
}

.card-icon-box-purple {
  background: #F5F3FF;
  color: #6366F1;
  border: 1px solid rgba(99, 102, 241, 0.05);
}

.card-dots {
  color: #94A3B8;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.card-dots:hover {
  opacity: 1;
}

.card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.card-value-blue {
  color: #1D4ED8;
}

.card-value-teal {
  color: #0D9488;
}

.card-value-orange {
  color: #EA580C;
}

.card-value-purple {
  color: #6366F1;
}

.card-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 10px;
}

.graphic-box {
  border-radius: 14px;
  padding: 10px 14px;
  margin-top: auto;
  height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(248, 250, 252, 0.6);
  border: 1px solid rgba(1, 44, 119, 0.04);
  backdrop-filter: blur(4px);
}

.code-editor {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 10.5px;
  line-height: 1.45;
  color: #475569;
  font-weight: 700;
}

.code-line {
  display: flex;
  align-items: flex-start;
}

.code-line-num {
  width: 20px;
  color: #CBD5E1;
  user-select: none;
  flex-shrink: 0;
}

.code-content {
  white-space: pre;
}

.code-keyword {
  color: #2563EB;
}

.code-str {
  color: #EA580C;
}

.code-num {
  color: #0D9488;
}

.progress-title {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 11px;
  color: #6366F1;
  font-weight: 700;
  margin-bottom: 6px;
}

.progress-track {
  height: 8px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 4px;
  border: 1px solid rgba(99, 102, 241, 0.05);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366F1 0%, #818CF8 100%);
  border-radius: 9999px;
  width: 75%;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 800;
  color: #94A3B8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* About us end */

/*new-index-search*/
.bi-result-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(1, 44, 119, 0.10);
  border-top: 2px solid #1D4ED8;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(1, 44, 119, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  width: 1354px;
  margin-left: -30px;
}

.bi-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(1, 44, 119, 0.15);
}

.bi-card-title-bar {
  padding: 12px 18px 10px;
  background: linear-gradient(to right, rgba(29, 78, 216, 0.14) 0%, rgba(0, 182, 190, 0.10) 100%);
  border-bottom: 1px solid rgba(29, 78, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bi-result-title {
  font-family: 'Noto Serif Gujarati', 'Plus Jakarta Sans', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #1D4ED8;
  text-decoration: none;
  line-height: 1.5;
  display: block;
  transition: color 0.15s;
  flex: 1;
  white-space: normal;
  word-break: break-word;
}

.bi-card-inner {
  margin-top: -16px;
}

.bi-field-item:hover {
  background: #EFF6FF;
  border-color: rgba(29, 78, 216, 0.18);
}

.bi-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.15);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  color: #1D4ED8;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;

}

.bi-card-fields {
  padding: 14px 18px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}

.bi-field-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #EEF2F7;
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.15s;
}

.bi-field-icon.ico-book {
  background: #DBEAFE;
  color: #1D4ED8;
}

.bi-field-icon.ico-user {
  background: #DCFCE7;
  color: #15803D;
}

.bi-field-icon.ico-pub {
  background: #FEE2D5;
  color: #C2410C;
}

.bi-field-icon.ico-page {
  background: #F3E8FF;
  color: #7C3AED;
}

.bi-field-icon.ico-part {
  background: #E0F2FE;
  color: #0284C7;
}

.bi-field-icon.ico-gatha {
  background: #FFE4E6;
  color: #BE123C;
}

.bi-field-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.bi-field-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.bi-field-label {
  font-size: 10px;
  font-weight: 800;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.bi-field-val {
  font-family: 'Noto Serif Gujarati', 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bi-load-more-wrap {
  text-align: center;
  padding: 8px 0 4px;
}

/*new-index-search end*/

/*exportbook*/
.export-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.export-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.05);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.export-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
  border-color: rgba(1, 44, 119, 0.15);
}

.export-icon.number-icon {
  background: linear-gradient(135deg, #012c77, #2563EB);
}

.export-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.export-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.export-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #012c77;
  margin: 0;
}

.export-card-subtitle {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  max-width: 240px;
}

.export-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.export-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.export-btn.excel {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid rgba(19, 115, 51, 0.15);
}

.export-btn.pdf {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid rgba(197, 34, 31, 0.15);
}

.export-btn.pdf:hover {
  background: #C5221F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 34, 31, 0.25);
}

.export-btn.excel:hover {
  background: #137333;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(19, 115, 51, 0.25);
}

.export-icon.name-icon {
  background: linear-gradient(135deg, #FF6B00, #FB923C);
}

.export-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/*exportbook end*/

/*member-history start*/
.modal-header {
  margin-bottom: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.heading {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #012c77;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.orange {
  color: #FF6B00;
}

.main-content {
  box-shadow: none;
  background-color: transparent !important;
}

.form-horizontal {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 11px 30px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.clearfix {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
  flex: 1;
  margin-top: 15px;
  margin-bottom: 3px;
}

.clearfix .col-sm-2 {
  width: 7.666667%;
}

.form-control-label {
  margin-top: 10px;

}

.pull-left {
  font-size: 13px;
  font-weight: 800;
  color: #0A2540;
  white-space: nowrap;
}

.search-field-wrap {
  width: 83%;

}

.table-responsive {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: saturate(220%) blur(40px) !important;
  border-radius: 24px !important;
  padding: 24px !important;
  box-shadow: 0 12px 40px rgba(1, 44, 119, 0.08), 0 2px 8px rgba(1, 44, 119, 0.04), inset 0 1.5px 0 rgba(255, 255, 255, 0.95), inset 0 -1px 0 rgba(255, 255, 255, 0.20) !important;
  border: 1px solid rgba(1, 44, 119, 0.12) !important;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dataTables_wrapper {
  border-radius: 16px !important;
  overflow-x: auto !important;
}

.hover-border {
  color: #FF6B00;
  font-family: monospace;
  cursor: default;
  text-decoration: none;
}

@media(max-width:768px) {
  
  
  #MemberHistory .form-horizontal .row{
    margin-bottom:-10px !important;
  }
}

/*member-history end*/

/*Book issue search start*/
.history_search .row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.history_search .pull-left {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

.form-horizontal {
  background: #fff;
  border-radius: 22px;
  padding: 3px 22px 3px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}


.form-horizontal .row {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

/* ===========================
   Labels
=========================== */
.form-horizontal .form-control-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.form-horizontal .form-control-label label {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #26344d;
}

/* ===========================
   Bootstrap Override
=========================== */

.form-horizontal .form-group,
.form-horizontal .form-line {
  width: 100%;
  margin-bottom: 0;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

.form-horizontal .form-line:before,
.form-horizontal .form-line:after {
  display: none !important;
}

/* ===========================
   Column Width Fix
=========================== */

.form-horizontal .col-sm-8 {
  flex: 1 1 auto;
  max-width: none !important;
  width: auto !important;
}

.form-horizontal .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* ===========================
   Inputs
=========================== */

.form-horizontal input[type="text"],
.form-horizontal input[type="date"] {
  width: 100%;
  height: 35px;
  border: 1px solid #d6dde8 !important;
  border-radius: 12px !important;
  padding: 0 16px;
  font-size: 15px;
  background: #fff !important;
  box-shadow: none !important;
  outline: none;
}

.form-horizontal input[type="text"]:focus,
.form-horizontal input[type="date"]:focus {
  border-color: #4c8dff !important;
  box-shadow: 0 0 0 3px rgba(76, 141, 255, .15);
}

/* Placeholder */

.form-horizontal input::placeholder {
  color: #9aa6bf;
}

/* ===========================
   Button
=========================== */

#filterData {
  width: 95px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff9933, #ff7b22);
  color: #fff;
  font-weight: 600;
  margin-top: 0 !important;
}

#filterData:hover {
  color: #fff;
}

#DataTables_Table_1 tfoot {
  display: none !important;
}

.dt-buttons .dt-button,
.dt-buttons button {
  background: linear-gradient(135deg, #00b6be 0%, #00939a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 182, 190, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;

  margin-left: 29px !important;
  border: none !important;
}

.dt-buttons .dt-button:hover,
.dt-buttons .dt-button:focus,
.dt-buttons .dt-button:active {

  background: linear-gradient(135deg, #00b6be 0%, #00939a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 182, 190, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px) {

  .form-horizontal .row {
    display: block;
  }

  .form-horizontal .form-control-label {
    margin-bottom: 8px;
  }

  .form-horizontal .col-sm-8,
  .form-horizontal .col-md-3 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  #filterData {
    width: 100%;
    margin-top: 15px !important;
  }

  #issued-book-page .dataTables_wrapper {
    display: block !important;
  }

}


/*Book issue search end*/

/*issued books start*/
#issued-book-page .iss_search {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
  align-items: normal !important;

}

#issued-book-page .iss_search .col-sm-2,
#issued-book-page .iss_search .col-sm-2 label {
  font-size: 11px;
  font-weight: 800;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#issued-book-page .iss_search .col-sm-7 {
  width: 100.333333% !important;
}

#issued-book-page .form-horizontal input[type="text"] {
  height: 42px !important;
}

#issued-book-page .form-horizontal .form-control-label {
  align-items: normal !important;
}

#issued-book-page .iss_from {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 190px;
  min-width: 200px;
  margin-top: -12px;
}

#issued-book-page .iss_till {
  margin-top: -12px;

}

#issued-book-page .iss_from .form-control-label i,
#issued-book-page .iss_from .form-control-label label,
#issued-book-page .iss_till .form-control-label i,
#issued-book-page .iss_till .form-control-label label {
  font-size: 11px;
  font-weight: 800;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#issued-book-page .iss_from input,
#issued-book-page .iss_till input {
  width: 100%;
  height: 42px !important;
  padding: 0 20px;
  line-height: 40px !important;
  border: 1px solid rgba(1, 44, 119, 0.16) !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #555 !important;
  background: rgba(255, 255, 255, 0.48) !important;
  outline: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), inset 0 1.5px 0 rgba(255, 255, 255, 0.85), inset 0 -1px 0 rgba(0, 0, 0, 0.04) !important;
  backdrop-filter: blur(8px);
  margin-top: 4px;
}

#issued-book-page #filterData {
  margin-top: 14px !important;
  height: 42px !important;
  margin: 0;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
}

#issued-book-page .form-horizontal input[type="text"]:focus,
#issued-book-page .form-horizontal input[type="date"]:focus {
  box-shadow: 0px 0px 12px -2px rgb(76, 141, 255) !important;
}

#issued-book-page .iss_search-btn {
  width: 8.666667%;
}

#issued-book-page #DataTables_Table_1_length {
  margin-top: 47px !important;
  margin-left: -24%;
}

#issued-book-page #DataTables_Table_1 {
  width: 0px;
  margin-top: 35px;
}

#issued-book-page .dt-buttons {
  margin-left: 0%;
}

#issued-book-page .dt-buttons .dt-button {
  margin-right: -19px !important;
  height: 38px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  width: auto !important;
  flex: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #00b6be 0%, #00939a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 182, 190, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

#issued-book-page .dt-buttons .dt-button:hover,
#issued-book-page .dt-buttons button:hover {
  background: linear-gradient(135deg, #009ea6 0%, #007c82 100%) !important;
  color: #ffffff !important;
  border-color: inherit !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}

#issued-book-page .dt-buttons .btn-blue {
  background: linear-gradient(135deg, #3374F0 0%, #1e5ad4 100%) !important;
}

#issued-book-page .dt-buttons .btn-blue:hover {
  background: linear-gradient(135deg, #1e5ad4 0%, #174ab2 100%) !important;
}

#issued-book-page .dt-buttons .btn-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8F3D 100%) !important;
}

#issued-book-page .dt-buttons .btn-orange:hover {
  background: linear-gradient(135deg, #e05e00 0%, #e67d30 100%) !important;
}

#issued-book-page .issued {
  align-items: nomal;
  box-shadow: 0 12px 40px rgba(1, 44, 119, 0.08), 0 2px 8px rgba(1, 44, 119, 0.04), inset 0 1.5px 0 rgba(255, 255, 255, 0.95), inset 0 -1px 0 rgba(255, 255, 255, 0.20) !important;
  border: 1px solid rgba(1, 44, 119, 0.12) !important;

}

@media (max-width: 768px) {

  /*#issued-book-page #DataTables_Table_1 {
    overflow-x: auto !important;
  }
  #issued-book-page .dataTables_wrapper{
    overflow: auto !important;
  }*/
  #issued-book-page .issued {
    display: grid;
  }

  #issued-book-page .dt-buttons {
    margin-left: -3%;
  }

  #issued-book-page .iss_till {
    margin-top: -12px;
  }

  #issued-book-page .dt-buttons .dt-button {
    padding: 0 24px !important;
  }



}

/*issued book end*/

/*outstanding book start*/

.m-4 {
  margin: 5.5rem !important;
}

.out-form {
  justify-content: space-evenly;
  box-shadow: none;
  background: none;
  padding: 0px;
  border: none !important;
  margin-top: -32px;
}

.out-form .form-group {
  display: flex;
  align-items: center;
  gap: 33px !important;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
}

.out-form label {
  width: 45px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
}

.out-form input {
  width: 100%;
  height: 42px;
  padding: 0 20px;
  line-height: 40px !important;
  border: 1px solid rgba(1, 44, 119, 0.16) !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #012c77 !important;
  background: rgba(255, 255, 255, 0.48) !important;
  outline: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), inset 0 1.5px 0 rgba(255, 255, 255, 0.85), inset 0 -1px 0 rgba(0, 0, 0, 0.04) !important;
  backdrop-filter: blur(8px);
}

.out-search {
  width: 100.333333%;
}

.out-search input {
  height: 45px !important;
}

.out-card .mx-auto {
  height: 13vh;
  padding: 27px 22px 5px 22px;
}

.out-card p {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

td a {
  color: #2563EB !important;
  font-weight: 600;
}

table.dataTable.display tbody tr.odd>.sorting_1 {
  background-color: #fff;
}

.hidden-print h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0A2540;
  margin: 0;
  letter-spacing: 0.03em;
}

.hidden-print button,
.hidden-print button:hover {
  background: linear-gradient(135deg, #00b6be 0%, #00939a 100%) !important;
  border-color: #00b6be !important;
}

.text-center h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #0A2540;
  margin: 0 0 4px;
}

.text-center h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #0A2540;
}

table.all-out thead tr th {
  font-size: 11px !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  background: transparent !important;
  border: none !important;

}

table.all-out tbody tr td {
  font-size: 13px !important;
}

@media (max-width: 768px) {
  .m-4 {
    margin: 74px 0px 0px 0px !important;
  }

  table.dataTable.display tbody tr.odd>.sorting_1 {
    background-color: #fff !important;
  }


  .modal-header h5 {
    font-size: 28px;
    font-weight: 840;
    color: #012c77;
    letter-spacing: 0.5px;
    text-transform: none;
    margin: 0;
  }

  .heading {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0A2540;
    margin: 0;
    letter-spacing: 0.03em;
  }

  .modal-header button {
    height: 38px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    width: auto !important;
    flex: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    margin: 10px 186px 0px 0px;
  }

  .modal-body {
    padding: 8px !important;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .out-form {
    backdrop-filter: blur(0px) !important;
    background: transparent !important;
  }

}


/*outstanding book end*/

/*deleted books start*/


h1 {
  font-size: 28px;
}

.del-form {
  padding: 20px 22px 20px 22px;
  justify-content: normal;
  margin-top: -17px;
}

#filterData {
  margin-top: 0px !important
}

/*deleted book end*/

/*missingbook start*/
#missing-books-page .col-sm-4 {
  width: 12.333333%;
  margin-left: 0%
}

#missing-books-page .col-sm-4 button {
  margin-left: -38%;
  border: 1px solid rgba(1, 44, 119, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.48) !important;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  height: 42px !important;
  font-weight: 700;
  color: #012c77 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#missing-books-page.m-4 {
  margin: 6.5rem !important
}

/* #missing-books-page form {
  padding: 0px 22px 0px 22px !important;
} */

#missing-books-page .missing-book-chip {
  display: inline-block;
  margin: 2px;
  padding: 2px 8px !important;
  border: 1px solid #EF4444 !important;
  border-radius: 6px;
  background: #FFF5F5 !important;
  color: #EF4444 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

#missing-books-page .page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
  padding: 20px;
}

#missing-books-page .page-title {
  font-size: 28px;
  font-weight: 840;
  color: #012c77;
  letter-spacing: 0.5px;
}

#missing-books-page .size-badge {
  background: rgba(1, 44, 119, 0.08);
  color: #012c77;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  #missing-books-page .m-4 {
    margin-top: 20% !important;
  }

  #missing-books-page .form-horizontal .row {
    display: contents !important;
  }

  #missing-books-page .col-sm-4 {
    width: 84.333333% !important;
  }

  #missing-books-page .row button {
    margin-left: 3% !important;
  }

  #missing-books-page .modal-body .form-horizontal {
    padding: 1px 22px 8px 22px !important;
  }

  #missing-books-page #filterData {
    margin-top: -8px !important;
    height: 35px !important;
  }



  

  #missing-books-page .dataTables_wrapper {
    display: block !important;
  }

}

#missing-books-page #dropdown-book-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 220px;
  display: none;
  z-index: 99999;

  background: #fff;
  border: 1px solid rgba(1, 44, 119, .12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(1, 44, 119, .12);

  max-height: 180px;
  /* adjust as needed */
  overflow-y: auto;
  overflow-x: hidden;
}

#missing-books-page .search-panel {
  background: rgba(255, 255, 255, 0.85);
  /* backdrop-filter: blur(18px); */
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#missing-books-page .search-input-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

#missing-books-page .search-label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}

#missing-books-page .search-select-field {
  flex: 1;
  border: 1.5px solid rgba(1, 44, 119, 0.12);
  outline: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-family: inherit;
  color: #334155;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") no-repeat right 12px center/1.5em auto;
  appearance: none;
  transition: all 0.2s;
  padding-right: 36px;
}

#missing-books-page .search-select-field option {
  background-color: #ffffff !important;
  color: #334155 !important;
  padding: 8px !important;
}

#missing-books-page .search-select-field:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

#missing-books-page .city-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: none;
  background: #fff;
  cursor: pointer;
  pointer-events: auto;
  transition: .2s;
}

#missing-books-page .city-option:hover {
  background: #f5f8fb;
}

#missing-books-page .city-option .check-icon {
  visibility: hidden;
}

#missing-books-page .city-option.selected {
  background: #eef9f8;
  color: #008b94;
  font-weight: 600;
}

#missing-books-page .city-option.selected .check-icon {
  visibility: visible;
}

#missing-books-page #sizeDropdownBtn {
  border: 1px solid rgba(1, 44, 119, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.48) !important;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  height: 42px !important;
  font-weight: 700;
  color: #012c77 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* Missing Book Numbers column */
#missing-books-page #DataTables_Table_1 td:nth-child(2),
#missing-books-page #DataTables_Table_1 th:nth-child(2) {
    width: 500px;          /* Set required width */
    max-width: 500px;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    vertical-align: top;
}
#missing-books-page .missing-book-chip {
    display: inline-block;
    margin: 2px;
    white-space: nowrap;
}
@media (max-width: 576px) {
  #missing-books-page .qs-city-wrap {
    width: 100%;
    max-width: 80%;
  }
}

/*missingbook end*/

/*book-history page start*/

#book-history-page .page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

#book-history-page .page-title {
  font-size: 24px;
  font-weight: 800;
  color: #012c77;
  letter-spacing: -0.5px;
}

#book-history-page .bh-search-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

#book-history-page .bh-search-label {
  font-size: 11px;
  font-weight: 800;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#book-history-page #dateRangeContainer {
  display: none;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 2%;
}

#book-history-page #dateRangeContainer input {
  height: 40px;
  border-radius: 10px !important;
  padding: 0 14px;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  color: #374151;
  background: #fff;
  outline: none;
  width: 17%;
}

#book-history-page #viewbookhistory {
  height: 38px !important;
  /* : 0 18px !important;  */
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  width: auto !important;
  flex: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}
#book-history-page table.dataTable thead .sorting_desc,
#book-history-page table.dataTable thead .sorting_asc {
    background-image: none !important;
}
/* Ascending */
#book-history-page table.dataTable thead th.sorting_asc {
    position: relative;
    padding-right: 28px !important;
}

#book-history-page table.dataTable thead th.sorting_asc::after {
    display: block !important;
    content: "▲" !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
}

/* Descending */
#book-history-page table.dataTable thead th.sorting_desc {
    position: relative;
    padding-right: 28px !important;
}

#book-history-page table.dataTable thead th.sorting_desc::after {
    display: block !important;
    content: "▼" !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
}

@media (max-width: 768px) {

  /*#book-history-page #DataTables_Table_1 {
    overflow-x: auto !important;
  }*/
  /* #book-history-page .dataTables_wrapper{
    overflow: auto !important;
  }*/
  #book-history-page #dateRangeContainer input {
    width: 30%;
  }

  #book-history-page .dataTables_length {
    margin: 4px !important;
  }

  #book-history-page .table-responsive {
    padding: 13px !important;
  }

  #book-history-page .table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }

  #book-history-page #DataTables_Table_1 {
    width: max-content !important;
    min-width: 100%;
  }
}

/*book-history page end*/


/*history-search page start*/
#history-search-page .page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

#history-search-page .page-title {
  font-size: 28px;
  font-weight: 800;
  color: #012c77;
  letter-spacing: 0.5px;
  margin: 0;
}

#history-search-page .page-title span {
  color: #FF6B00;
}

/* Form card */
#history-search-page .ih-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 24px 28px;
  margin-bottom: 24px;
}

#history-search-page .ih-form-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

#history-search-page .ih-form-row:last-child {
  margin-bottom: 0;
}

#history-search-page .ih-label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

#history-search-page .ih-input-wrapper {
  flex: 1;
}

#history-search-page .ih-input {
  width: 100%;
  border: 1px solid rgba(1, 44, 119, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: inherit;
  color: #012c77 !important;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.85);
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#history-search-page .ih-input:focus {
  border-color: rgba(37, 99, 235, 0.68) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.14),
    0 0 0 2.5px rgba(37, 99, 235, 0.10);
}

#history-search-page .ih-input::placeholder {
  color: rgba(1, 44, 119, 0.45) !important;
  font-weight: 500 !important;
}

#history-search-page .ih-double-row {
  display: flex;
  gap: 48px;
}

#history-search-page .ih-form-group {
  display: flex;
  align-items: center;
  flex: 1;
}

#history-search-page .ih-form-actions-placeholder {
  width: 120px;
  flex-shrink: 0;
}

#history-search-page .ih-form-actions {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}

#history-search-page .ih-form-actions .search-btn {
  width: 100%;
}



/* ------------------ First Row ------------------ */
#history-search-page .dataTables_wrapper .dt-buttons {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

/* ------------------ Second Row ------------------ */

#history-search-page .dataTables_wrapper {
  display: block;
}

/* Second row */
#history-search-page .dataTables_length {
  float: left !important;
}

#history-search-page .dataTables_filter {
  float: right !important;
}

/* Keep pagination normal */
#history-search-page .dataTables_info {
  float: left !important;
}

#history-search-page .dataTables_paginate {
  float: right !important;
}

/* Make length & filter stay on same row */
#history-search-page .dataTables_wrapper .dataTables_length,
#history-search-page .dataTables_wrapper .dataTables_filter {
  margin-top: 20px;
}

/* Style labels */
#history-search-page .dataTables_wrapper .dataTables_length label,
#history-search-page .dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

@media (max-width: 768px) {
  #history-search-page .ih-double-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/*history-search page end*/

/*created-book page start*/
#created-book-page body {
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  /* Standard */
}

#created-book-page .dt-button-collection .buttons-columnVisibility:not(.active) {
  background-color: grey !important;
  color: #000000 !important;
}

@media (max-width: 768px) {
  #created-book-page #DataTables_Table_1 {
    overflow-x: auto !important;
  }

  #created-book-page .dataTables_wrapper {
    overflow: auto !important;
  }

  #created-book-page span {
    width: 58% !important;
  }
}

/*created-book page end*/
/*modified book page start*/
#modifiedbook-page .page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  
  margin-bottom: 0.5rem !important;
}

#modifiedbook-page .page-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: #012c77;
  letter-spacing: -0.5px;
}

#modifiedbook-page .page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#modifiedbook-page body {
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  /* Standard */
}

@media (max-width: 768px) {

  #modifiedbook-page span {
    width: 58% !important;
  }

  #modifiedbook-page h1 {
    font-size: 20px !important;
  }

  #modifiedbook-page .dataTables_wrapper {
    display: block !important;
  }

  
}

/*modified book page end*/
/*subject page start*/
#subject-page .m-4 {
  margin: 26.5rem !important;
}

#subject-page .mb-5 {
  margin-top: -31%;
}

#subject-page .modal-body {
  padding: 0px !important;
  margin-top: 48px;
}

#subject-page .dataTables_length,
#DataTables_Table_1_filter {
  margin-top: 17px;
}

/* Hide only the DataTables print button */
#subject-page .buttons-print {
  display: none !important;
}

/* Keep Entries dropdown visible */
#subject-page .dataTables_length {
  display: block !important;
}

/* Hide only the DataTables Buttons container if empty */
#subject-page .dt-buttons {
  width: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  #subject-page .m-4 {
    margin: 224px 10px 11px 10px !important;
  }

  #subject-page #DataTables_Table_1 {
    overflow-x: auto !important;
  }

  #subject-page .dataTables_wrapper {
    overflow: auto !important;
    margin-top: 44px;
  }

  #subject-page .dt-buttons {
    display: none;
  }
}

/*subject page end*/
/* navigation design for desktop start */
 
@media (min-width: 1200px) and (max-width: 1428px) {
.ss-logo {
gap: 5px !important;
margin-right: 10px !important;
}
 
body.ss-logged-in .ss-nav-links {
gap: 0px !important;
margin-left: 0px !important;
margin-right: 0px !important;
}
 
.ss-btn-logout {
padding: 5px 10px !important;
font-size: 12px !important;
}
 
.ss-navbar {
padding: 0 10px !important;
}
}
 
/* navigation design for desktop end */