.border-bottom {
   border-bottom: 1px solid #ccc;
}

.text-primary-dark {
   color: #090984 !important;
}

.cardBorder {
   border: 1px solid pink;
   border-radius: 1%;
}

/* RIGHT SIDEBAR FIXED */
.right-sidebar {
   position: fixed;
   right: 9px;
   top: 52px;
   width: 41px;
   height: 57vh;
   background: #2a334300;
   z-index: 999;
   transition: none !important;
}

/* Remove hover expansion */
/* .right-sidebar:hover {
   width: 70px !important;
} */
.navbar {
   height: 40px;
   background: #4f575e !important
}

.navbar-brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 18px;
}

.btn-outline-danger {
   border-radius: 20px;
}

.footer {
   background: #252d3e;
}

/* #loader {
   position: fixed;
   left: 50%;
   top: 50%;
   width: 100%;
   height: 100%;
   z-index: 9999;
   display: none;
   background: url('../../assets/images/loader/loading-loader.gif') no-repeat transparent;
} */
/* spatial analysis data table css START  */
#loader {

   position: fixed;
   inset: 0;
   background: url('../../assets/images/loader/loading-loader.gif') no-repeat transparent;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 9999999;
   left: 45%;
   top: 40%;
   display: none;
}


/* spatial analysis data table css END */
.analysis-warning {
   background: rgba(255, 193, 7, 0.12);
   border-left: 5px solid #ffc107;
   padding: 10px 15px;
   border-radius: 21px;
   font-weight: 500;
   color: #facfcf !important;
   letter-spacing: 0.3px;
}

.layer-search-box input {
   font-size: 10px;
   border-radius: 6px;
}

.layer-search-box {
   position: relative;
}

#clearLayerSearch {
   position: absolute;
   right: 10px;
   top: 50%;
   transform: translateY(-50%);
   cursor: pointer;
   font-size: 14px;
   color: #888;
   display: none;
}

#clearLayerSearch:hover {
   color: red;
}

.gis-body {
   max-height: 300px;
   overflow: hidden;
   display: flex;
   flex-direction: column;

}

.gis-content {
   overflow-y: auto;
   flex: 1;
   padding-right: 5px;
}

.gis-footer {
   position: sticky;
   bottom: 0;
   background: #0a0d10;
   padding: 10px;
   display: flex;
   justify-content: center;
   gap: 10px;
   z-index: 10;
}

.gis-footer .btn {
   white-space: nowrap;
   font-size: 12px;
   padding: 4px 8px;
}


.custom-footer {
   background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
   color: #fff;
   font-size: 13px;
   padding: 1px 0;
   box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
   z-index: 999;
}

.divider {
   margin: 0 8px;
   opacity: 0.6;
}

.stp {
   color: #a8d8ff;
   font-weight: 500;
   text-decoration: none;
   cursor: pointer;
}


.stp:hover {
   text-decoration: underline;
}

/* DISCLAIMER INLINE */
.disclaimer-wrapper {
   position: relative;
   margin-left: 10px;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 4px;
   color: #00c6ff;
   transition: 0.3s;
}

.disclaimer-wrapper:hover {
   color: #fff;
}

.disclaimer-wrapper i {
   font-size: 15px;
}

.disclaimer-text {
   font-size: 12.5px;
   text-decoration: underline;
}



/* SHOW */
.disclaimer-wrapper:hover .custom-tooltip {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
   pointer-events: auto;
}

.custom-tooltip.show {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
   pointer-events: auto;
}

/* HEADER */
.tooltip-header {
   background: #961340;
   color: #fff;
   font-weight: bold;
   padding: 8px 12px;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
}

/* TOOLTIP CONTAINER */
.custom-tooltip {
   position: absolute;
   bottom: 45px;
   left: 50%;
   transform: translateX(-50%) translateY(20px) scale(0.95);

   width: 420px;

   background: rgba(15, 15, 20, 0.85);
   backdrop-filter: blur(14px);

   border-radius: 14px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);

   opacity: 0;
   pointer-events: none;

   transition: all 0.35s ease;
   border: 1px solid rgba(255, 255, 255, 0.08);
}

/* SHOW ANIMATION */
.custom-tooltip.show {
   opacity: 1;
   transform: translateX(-50%) translateY(0) scale(1);
   pointer-events: auto;
}

/* ARROW POINTER */
.custom-tooltip::after {
   content: "";
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   border-width: 10px;
   border-style: solid;
   border-color: rgba(255, 255, 255, 0.85) transparent transparent transparent;
}

/* HEADER */
/* TOOLTIP CARD */
.custom-tooltip {
   position: absolute;
   bottom: 40px;
   left: 50%;
   transform: translateX(-50%) translateY(20px);

   width: 407px;
   background: #ffffff;
   color: #222;

   border-radius: 12px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

   opacity: 0;
   pointer-events: none;
   transition: all 0.25s ease;
   overflow: hidden;
}

/* SHOW */
.custom-tooltip.show {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
   pointer-events: auto;
}

/* HEADER */
/* .tooltip-header {
display: flex;
align-items: center;
justify-content: space-between;

background: #1f2937;
color: #fff;

padding: 6px 12px;
font-size: 13px;
font-weight: 600;
} */

.tooltip-header i {
   margin-right: 6px;
   color: #facc15;
}

/* CLOSE BUTTON */
.close-tooltip {
   cursor: pointer;
   font-size: 16px;
   opacity: 0.7;
}

.close-tooltip:hover {
   opacity: 1;
}

/* BODY */
.tooltip-body {
   padding: 2px;
   font-size: 10px;
   line-height: 1.2;
   max-height: 250px;
   overflow-y: auto;
   padding-bottom: 14px;
   text-align: left;
}

/* SECTIONS */
.tooltip-section {
   margin-bottom: 10px;
}

.tooltip-section strong {
   display: block;
   margin-bottom: 3px;
   color: #111827;
}

.tooltip-section p {
   margin: 0;
   color: #4b5563;
}

/* SCROLL */
.tooltip-body::-webkit-scrollbar {
   width: 5px;
}

.tooltip-body::-webkit-scrollbar-thumb:hover {
   background: #9ca3af;
}



.tooltip-body::-webkit-scrollbar-thumb {
   background: #9ca3af;
   border-radius: 5px;
}

/* Fix #areaDropdown conflict from styles.css where it assumed it was a select element */
div#areaDropdown {
   height: auto !important;
   background-color: transparent !important;
   border: none !important;
}

/* #plotenquiry-panel{
  width: fit-content;
} */
.enq-background {
   background-color: #0a0a0ade !important;
}

.enq-cardbackground {
   background: transparent !important;
}

#enquiryDataTable thead th,
#enquiryDataTable tbody td {
   color: white !important;
   border: 1px solid #333333de;
}

#plotEnquiryDataTable thead th,
#plotEnquiryDataTable tbody td {
   color: white !important;
   border: 1px solid #333333de;
}

#plotenquirydata {
   width: 100% !important;
}