.aboutModal {
  max-width: 80vw;
  max-height: 80vh;
  width: 100%;
  margin-top: 100px;
}

.displayNone {
  display: none;
}

h2 {
  text-align: center;
}

ul {
  list-style-type: circle;
  margin-left: 10;
}

.linkStyle {
  color: blue;
  text-decoration: underline;
}

#EJVAboutContainer {
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px;
  background-color: rgb(233, 233, 233);
}

ul li::marker {
  color: rgb(0, 18, 182);
  font-size: 1.5em;
}

/* Custom CSS for SketchViewModelStyler to reduce spacing */
.sketch-styler-card {
    width: 400px;
    max-height: 400px;
    overflow-y: scroll;
    margin: 0;
    /* Remove margin around the card */
    border: none;
    /* Optional: remove border */
}

/* Adjust padding for .col-form-label within a specific card */
.custom-padding-card .col-form-label {
    padding-top: 0;
    /* Adjust to your preferred value */
    padding-bottom: 0;
    /* Adjust to your preferred value */
}

.unique-list .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sketch-styler-card .card-header {
    padding: 0.25rem 0.5rem;
    /* Reduce padding in the header */
    background-color: #f8f9fa;
    /* Keep background or change as needed */
    border-bottom: none;
    /* Remove border bottom */
}

.sketch-styler-card .btn {
    padding: 0.25rem 0.5rem;
    /* Reduce button padding */
    font-size: 0.8rem;
    /* Adjust font size as necessary */
}

.sketch-styler-card .card-body {
    padding: 0.5rem;
    /* Reduce padding in the body */
}

.sketch-styler-card .form-control,
.sketch-styler-card .custom-select {
    padding: 0.25rem 0.5rem;
    height: auto;
    /* Adjust input height */
    font-size: 0.8rem;
    /* Smaller font size for form controls */
}

.sketch-styler-card .custom-control-label {
    margin-bottom: 0;
    /* Remove margin below labels */
}

.sketch-styler-card .annotation-tool-btn {
	border: 1px solid transparent;
}

.sketch-styler-card .annotation-tool-btn.is-active {
	border-color: #0d6efd;
	background-color: rgba(13, 110, 253, 0.12);}

.sketch-styler-card .annotation-tool-btn.is-active:hover {
	background-color: rgba(13, 110, 253, 0.20);
}


.uniform-font {
    font-size: 14px !important;
    font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif !important;
}
/* OUTER stops the page from expanding horizontally */
.v8-table-outer {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	/* or hidden if you need wider support */
	position: relative;
	contain: inline-size;
	/* isolates intrinsic inline sizing (modern browsers) */
}

.tableHeaderMaxHeight {
	max-height: 33.33px
}

/* Style the close X button */
.close-btn {
	background: none;
	border: none;
	padding: 0;
	margin-left: 0.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.close-btn:hover svg {
	opacity: 0.75;
}

/* Fix alignment inside Bootstrap tabs */
.nav-tabs .nav-link {
	position: relative;
}

/* INNER owns both scrollbars */
.v8-table-scroll {
	max-height: none !important;
	height: 100%;
	/* max-height: 500px; */
	/* adjust for your UI */
	overflow-x: auto;
	/* horizontal scroll here */
	overflow-y: auto;
	/* vertical scroll here */
}

/* Table: no min-width tricks that can force page-wide growth */
.v8-table-scroll>table {
	width: auto;
	/* NOT 100%, NOT max-content */
	border-collapse: collapse;
	/* make sure no stray min-width sneaks in */
	min-width: 0;
}

/* Readable cells, no forced ellipsis */
.v8-table-scroll th,
.v8-table-scroll td {
	white-space: nowrap;
	padding: 0.5rem;
}

/* If you use sticky headers */
.v8-table-scroll thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	background: #fff;
}

.thAlignHeaderItems {
	align-items: end;
}

.v8TableBody {
	font-size: 12px;
}

/* aligns text in the tab title with the close icon */
.V8TabAlignText {
	/* align-items: baseline !important; */
	display: flex;
	align-items: center;
	gap: 0.4rem;
	/* spacing between text and X */
	padding-right: 1.25rem !important;
	/* ensures X never overlaps border */
}

.V8CenterReactIconInColumn {
	text-align: center;
}

.v8TableContainerDIV {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	/* Hide overflow to prevent page size increase */
}

.v8tab-content {
	flex: 1 1 auto;
	/* overflow: auto; */
	/* Enable scrolling within the tab content */
	display: flex;
	flex-direction: column;
	overflow-x: scroll;
}

.v8nav-tabs {
	flex-shrink: 0;
	/* Prevent nav-tabs for attrib table from shrinking */
}

.v8Tab-pane {
	flex: 1 1 auto;
	overflow: auto;
	display: flex;
	flex-direction: column;
}

.bookmarks_Form {
    flex: auto;
}

.bookmarks_Input {
    display: none;
}

.bookmarks_ModalBody {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 10rem);
}

.bookmarks_p {
    font-size: smaller;
}

.Bookmarks-sidebar-style {
    /* max-width: 310px; */
    width: 100%;
    box-sizing: border-box;
}
/* Container for the gallery */
.photo-gallery-container {
    display: block;
    /* Ensure it fits within its container */
    width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(7480%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

/* Hide scrollbar */
.photo-gallery-container::-webkit-scrollbar {
    display: none;
}

/* Flexbox for inline images */
.photo-gallery {
    display: flex;
    gap: 10px;
    /* Space between the images */
}

/* Style for the images in the photo gallery */
.photo-gallery img {
    height: 75px;
    width: auto;
    /* Maintains aspect ratio */
    border-radius: 8px;
    /* Adjust the value for more or less rounding */
    object-fit: contain;
    /* Ensures the image covers the area without distortion */
    display: block;
    margin: 0 auto;
    /* Centers the image horizontally */
}

/* Show the gallery on mobile devices */
@media only screen and (max-width: 767px) {
    .photo-gallery-container {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    /* Flexbox for inline images */
    .photo-gallery {
        display: flex;
        gap: 10px;
    }

    /* Style for the images in the photo gallery */
    .photo-gallery img {
        height: 125px;
        width: auto;
        /* Maintains aspect ratio */
        border-radius: 8px;
        /* Adjust the value for more or less rounding */
        object-fit: contain;
        /* Ensures the image covers the area without distortion */
        display: block;
        margin: 0 auto;
        /* Centers the image horizontally */

        /* Add drop shadow */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* Hide scrollbar */
    .photo-gallery-container::-webkit-scrollbar {
        display: none;
    }

    .photo-gallery-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}
/* React Aria Tree Styles */
.tree {
  padding: 4px 0;
  font-size: 16px;
}

.mobileTree {
  padding: 8px 0;
  font-size: 20px;
}

.chevronButton {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0; /* Prevent shrinking */
}

/* Placeholder to maintain alignment when no chevron */
.chevronPlaceholder {
  display: inline-block;
  width: 24px; /* Same width as chevron button */
  height: 24px;
  flex-shrink: 0;
}

.chevronIcon {
  transition: transform 0.2s;
  font-size: 16px;
}

/* Rotate chevron when expanded */
.react-aria-TreeItem[data-expanded] .chevronIcon {
  transform: rotate(90deg);
}

.checkbox {
  margin-right: 8px;
}

.checkboxIndicator {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobileCheckbox .checkboxIndicator {
  width: 28px;
  height: 28px;
}

.checkIcon {
  opacity: 0;
  color: #007bff;
  font-size: 14px;
}

.mobileIcon .checkIcon {
  font-size: 20px;
}

/* Show check icon when selected */
.react-aria-TreeItem[data-selected] .checkIcon {
  opacity: 1;
}

.label {
  cursor: pointer;
}

.mobileLabel {
  padding: 8px 12px;
  font-size: 20px;
}

/* ----------------------------- */
/* Dynamic Indentation System    */
/* ----------------------------- */

:root {
  --indent-base: 8px; /* Base padding for level 0 */
  --indent-step: 24px; /* Increment per level */
}

/* Dynamic indentation using calc and custom property */
.react-aria-TreeItem {
  padding-left: calc(
    var(--indent-base) + (var(--tree-level, 0) * var(--indent-step))
  );
}

/* Hover state */
.react-aria-TreeItem[data-hovered] {
  background-color: #f0f0f0;
}

/* Selected state */
.react-aria-TreeItem[data-selected] {
  background-color: #e3f2fd;
}

/* =============================== */
/* Highlight ancestor nodes        */
/* =============================== */

/* Make the label bolder for ancestors */
.react-aria-TreeItem[data-has-selected-child='true'] .label {
  font-weight: 600;
  color: #1565c0;
}

/* Hover should sit on top of ancestor highlight */
.react-aria-TreeItem[data-hovered] {
  background-color: #f0f0f0 !important;
}

/* Mobile-specific styles */

.mobileCheckbox input[type='checkbox'] {
  width: 28px;
  height: 28px;
  transform: scale(1.8);
  margin-right: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.mobileCheckbox input[type='checkbox']:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.mobileIcon {
  font-size: 20px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}


.editor-action-bar {
  z-index: 10;
  cursor: not-allowed;
}

.editor-verify-btn:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
  opacity: 1;
  cursor: not-allowed;
}

.editor-wrapper {
  min-height: 0;
}

.editor-connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 72%;
  margin: 0 auto;
  left: 5px;
  right: 0;
  top: 22px;
  z-index: 1;
}

.errorBoundaryContainer {
	text-align: center;
	margin: 30px;
	padding: 20px;
	background-color: #f2f2f2;
	border-radius: 8px;
	border: 1px solid #ccc;
}

.feedbackModal_label1 {
    font-size: 40px;
}

.feedbackModal_textArea1 {
    width: 70%;
}

.feedbackModal__a {
    text-decoration: none;
    cursor: pointer;
}

.feedbackModal_Header {
    padding-left: 38%;
    font-size: 20px;
}

.feedbackModal_Footer {
    color: red;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 700;
}

.feedbackModal_InlineFlex {
    display: inline-flex;
}

.feedbackModal_redLabel {
    color: red;
}

.feedbackModal {
    margin-top: 100px;
}

.feedbacktooltip {
  position: relative;
  display: inline-block;
}

.feedbacktooltip .feedbacktooltiptext {
  visibility: hidden;
  background-color: #888585;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  font-size: 13px;

  /* Position the tooltip below the emoji */
  position: absolute;
  bottom: -20px;   /* adjust for distance below emoji */
  left: 50%;
  transform: translateX(-50%);

  /* ✅ Ensure tooltip appears above emojis */
  z-index: 9999;
  white-space: nowrap; /* prevent wrapping */
}

.feedbacktooltip:hover .feedbacktooltiptext {
  visibility: visible;
}


.emojiButton {
  font-size: 40px;
  cursor: pointer;
  margin: 0 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 6px;
  padding: 5px;
  border: none;
  background: none;
}

.emojiButton:hover {
  transform: scale(1.2);
}

.emojiButton:focus {
  outline: 2px solid #0d6efd; /* Blue focus ring for keyboard users */
}

.emojiButton.selected {
  background-color: #949494;
  outline: solid 2px #656363;
}

.emojiButton.selected:focus {
  outline: 2px solid #0d6efd;
}

.siteTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.siteAgency {
    font-size: 16px;
}

@media (max-width: 1199px) {
    .siteTitle {
        font-size: 14px;
        /* Adjust this value as needed */
    }

    .siteAgency {
        font-size: 12px;
    }

    .navbar-nav {
        justify-content: flex-start;
        /* Align items to the left when a hamburger menu */
    }
}

@media (max-width: 991px) {
    .siteTitle {
        font-size: 12px;
        /* Adjust this value as needed */
    }

    .siteAgency {
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .siteTitle {
        display: none;
    }
}

.pagination-arrow-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    /* or 24px or 32px — just ensure it has a footprint */
    min-height: 28px;
}

.pagination-arrow-btn:focus-visible {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

.pagination-arrow-btn[disabled],
.pagination-arrow-btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.quick-id-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    /* Space between rows */
}

.data-row {
    display: flex;
    align-items: center;
    /* Vertically center label, colon, and value */
    gap: 0.5rem;
    /* Space between elements */
    padding-bottom: 8px;
}

.id-group-header-50 {
    min-width: 50PX !Important;
}

/* these id classes set the label distance in EJV so the values line up better */
.id-group-header-1 {
    min-width: 200PX !Important;
}

.id-group-header-225 {
    min-width: 225PX !Important;
}

.id-group-header-250 {
    min-width: 250PX !Important;
}

.label {
    min-width: 125px;
    /* Adjust based on longest label */
    text-align: left;
    /* Left-align labels */
}

.value {
    flex: 1;
    /* Take remaining space */
}
.esri-layer-list__item-actions {
    position: relative;
    /* Make sure this can hold the slider correctly */
}

.measurement-toolbar {
    display: flex;
}

@media (max-width: 768px) {
    .measurement-toolbar {
        margin-bottom: 20px;
    }
}

.measureButtonNoBorder {
    border: 0px;
}
.navbar-light .navbar-nav .nav-link {
    color: #464646 !important;
}

.alert {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Open Sans', sans-serif;
}

.navbar-brand {
    padding-bottom: 0px;
    padding-top: 0px;
    padding-left: 7px;
    box-shadow: none;
}

.navbar-light .navbar-brand {
    color: #000;
    /*padding-left: 10px; */
}

.nav .nav-item {
    outline-width: 1px;
    /* //background-color: #ebebe0; */
    font-family: 'Open Sans', sans-serif;

    @media (max-width: 1400px) {
        margin: 5px 10px;
    }

    border-radius: 4px;
}

.navbarBrandFloat {
    flex-grow: 1
}

.mobileNavbarBrand {
    max-width: 250px;
    ;
}

/* The header section (fixed navbar + layer toggle section) */
.navbarPAMobile {
    /* top: 0;
    width: 100%;
    z-index: 1000; */
    background-color: #fff;
    /* padding: 0; */
}

.paTitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: white;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .paTitle {
        max-width: 25%;
    }
}

.navbar_dropdownStyle {
    z-index: 999;
}

.navbar_SocialMediaIcon {
    font-weight: unset;
    cursor: pointer;
}

.navbar_NavLinkCustom {
    font-weight: inherit;
    cursor: pointer;
    align-self: center;
    z-index: 100;
}
#offcanvasUserProfile {
    width: 500px;
}

.resizer {
    width: 100%;
    height: 24px;
    /* Increase height for better grip */
    cursor: ns-resize;
    position: relative;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resizer-handle {
    width: 120px;
    height: 15px;
    background-color: #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

:root {
    --sidebar-width: 400px;
    /* Default width for larger screens */
}

/* For Chrome, Safari, and Opera */
aside::-webkit-scrollbar {
    width: 12px;
    /* Adjust the width as needed */
}

aside::-webkit-scrollbar-thumb {
    background: #888;
    /* Color of the scrollbar thumb */
    border-radius: 6px;
    /* Rounded corners (optional) */
}

aside::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color when hovered */
}

/* For Firefox */
aside {
    scrollbar-width: auto;
    /* Makes sure the scrollbar is the default width */
    scrollbar-color: #888 transparent;
    /* Thumb and track colors */
}

.splitterSidebar_a {
    color: blue;
    text-decoration: 'underline'
}

.cr-sidebar__nav-item-icon {
    width: 1.5rem;
    height: 1.5rem;
    padding-right: 0.5rem;
}

.splitterSidebar_ArrowClass {
    padding: 0;
    transition-duration: 0.3s;
    transition-property: transform;
}

.sidebarTextOnlyLink {
    color: blue;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::: Change menu text size at breakpoints */
/*1rem = 16px*/

/* very small devices 
 -- reduce the size fo the sidebar a bit */
@media (max-width: 575px) {
    .navbar-brand {
        font-size: 13px !important;
    }

    .modal-bookmarks {
        width: 80vw;
        height: 55vh;
    }
}

@media (max-width: 991px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

@media (max-width: 1200px) {}

@media (max-width: 1300px) {}

/* Extra large devices (large desktops, 1400px and up) */
@media (min-width: 1401px) {}

/*mobile or tablet*/
@media (max-width: 1400px) {

    /* reduce height or modals get cut off on a smaller device or screen */
    .modal-content {
        height: calc(100vh - 300px);
        min-height: 275px;
    }

    .modal-content {
        height: max-content !important;
    }
}
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    /* Adjust height as needed */
}

.spinner {
    margin-left: 10px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 5px solid #000000;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
}

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

    100% {
        transform: rotate(360deg);
    }
}
.swipe-basemap-selector {
    min-width: 450px;
}

.theme-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 450px;
    /* Ensure the container takes up the full height */
}

.customThemeStyleFlex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: rgb(255, 255, 255);
}

.themeWidget_li {
    border: none;
    margin-right: 5px;
    width: 100%;
    border-left: solid #fff 5px !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.themeWidget_img {
    width: 100px;
    height: 80px;
    padding: 5px;
    cursor: pointer;
}

.themeWidget_label {
    /* min-width: max-content; */
    width: -webkit-fill-available;
    cursor: pointer;
    padding: 32px 0px 0px 0px;
}

.Toastify__toast {
    padding: 20px;
    margin-right: 16px;
}

.Toastify__close-button>svg {
    height: 24px;
    width: 24px
}
.companiesSearchList {
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

/* Equal-width status chips for input-group */
.status-chip {
    /* pick a width that fits the longest label */
    /* --chip-w: 8rem; */
    /* tweak as needed */
    flex: 0 0 var(--chip-w);
    /* no grow, no shrink, fixed width */
    width: var(--chip-w);
    justify-content: center;
    /* center the text */
    display: inline-flex;
    /* aligns with BS .input-group-text behavior */
    white-space: nowrap;
    /* prevent wrap */
}
.warningModal {
  max-width: 80vw;
  max-height: 80vh;
  width: 100%;
  margin: auto;
  text-align: center;
  z-index: 9999;
}

.warningModalHeader {
  background-color: #eed202 !important;
}

.modalFooter {
  display: inline-flex;
  text-align: center;
}

.bodyStyle {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 10rem);
  overflow-y: auto;
}

/* hide the webpack-dev-server overlay, it was showing for benign issues with button resizes */
iframe#webpack-dev-server-client-overlay {
  display: none !important;
}

/* Font Smoothing */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
a,
td,
button,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.navbar {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Montserrat, Arial, sans-serif;
  color: #464646;
}

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

#mainContainer {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.mainPageContent {
  flex-grow: 1;
  display: flex;
  overflow: hidden;
  z-index: 0;
}

#root {
  /* padding-bottom: env(safe-area-inset-bottom) */
  height: 100%;
  margin: 0px;
  padding: 0px;
}

.map-wrapper {
  position: relative;
  /* establishes positioning context */
  width: 100%;
  height: 100%;
}

.map-loading-overlay {
  position: absolute;
  top: 50%;
  /* center vertically */
  left: 50%;
  /* center horizontally */
  transform: translate(-50%, -50%);
  z-index: 9999;
  /* ensure it's above the map */
  pointer-events: none;
  /* do not block map interactions if desired */
}

.map-loading-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
}

#desktopLayoutResultsContainer {
  width: 100%;
  /* Full width within its parent */
  max-width: 100%;
  /* Prevent overflow */
  overflow-x: overlay !important;
  /* Hide horizontal overflow */
  display: flex;
  flex-wrap: wrap;
  /* Wrap content if needed */
}


.mapLoadingProgressIndicator {
  position: relative;
  top: 150px;
}

.mapLoadingProgressIndicatorAlert {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 65%;
  display: flex;
  /* Use flexbox for centering */
  justify-content: center;
  /* Center the text horizontally */
  align-items: center;
  /* Center the text vertically */
}

.identifyResultsCardTitle {
  width: 50%;
}

.loading-indicator-widget {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: 1000;
  /* Ensure it appears above other content */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  /* Optional: semi-transparent background */
  padding: 20px;
  border-radius: 8px;
}

.identifyLoaderDisabled {
  display: none;
}

.forceFont {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px !important;
}

/* text color when basicDisplay text is 'prohibited */
.text-prohibited {
  color: red;
}

.colorRed {
  color: red;
}

.italic-text {
  font-style: italic;
}

.fontWeightBolder {
  font-weight: bolder;
}

.cursorPointer {
  cursor: pointer;
}

.textAlignLeft {
  text-align: left;
}

.overflow-hidden {
  overflow: hidden;
}

.rowPaddingNone {
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.labelPaddingNone {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.button-outline {
  border: 1px solid black;
  outline-style: solid;
  outline-color: black;
  outline-width: thin;
}

.paginate-disable {
  pointer-events: none;
  opacity: 0.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* Prevent text wrap */
  border: 0;
}

.nav-tabs {
  font-size: smaller;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  z-index: 10;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  padding: 5px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.dropdown-toggle::after {
  display: none;
}

.table-responsive {
  overflow-y: auto;

}

.accordion-body {
  font-size: 13px;
  width: 100%;
  width: -moz-available;
  /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}

.accordion-buttonPadded {
    padding: 8px !important;
}

.card-subheader {
  font-size: smaller;
  font-style: italic;
  color: red;
}

.resultsCardOverride {
  margin-bottom: 0px !important;
  padding: 0px !important;
  font-weight: bolder !important;
  background-color: rgb(235, 235, 235) !important;

}

.p-3-Override {
  padding: 0px !important;
}

.mb-5-Override {
  padding: 0px !important;
}

.pagination-icons {
  width: 1.5rem;
  height: 1.5rem;
}

.btn.btn-secondary:disabled {
  background-color: #ebebeb;
  color: #464646;
}

.nav-item {
  font-family: 'Open Sans', sans-serif;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
}

.nav-item .nav-link.active {
  color: #000;
  opacity: 1;
  font-weight: bolder;
}

/* Keep modal above Esri widgets / other UI */
.modal.show {
  z-index: 2000;
}

/* Prevent BS4’s default center animation when .fade sneaks in */
.modal .modal-dialog {
  transform: none !important;
}

/* Make sure content gets clicks even if parent uses pointer-events:none */
.modal .modal-dialog .modal-content {
  pointer-events: auto;
}

.modal-content {
  height: auto;
}

.modal-header {
  background-color: #ebebeb;
  color: #464646;
}

.modal-title {
  margin-left: 10px !important;
  color: #464646;
  max-height: 250px;
  overflow-y: auto;
}

button.close {
  color: #464646;
}

.badge:empty {
  display: inline-block;
}

.custom-esri-legend__service-label {
  flex: 1 100%;
  margin-bottom: 0.5em;
}

.esri-search__submit-button {
  display: none !important;
}

.esri-swipe--horizontal .esri-swipe__container {
  outline: none;
}

.esri-layer-list .esri-widget .esri-widget--panel {
  margin-left: 12px;
}

.esri-layer-list-panel__content--string {
  text-align: justify;
}

.esri-view-width-xsmall .esri-expand--auto .esri-expand__mask--expanded {
  background-color: transparent !important;
}

.esri-legend__layer-table .esri-legend__layer-table--size-ramp {
  visibility: hidden !important;
  height: 0px;
}

.esri-legend__layer-caption {
  visibility: hidden !important;
  height: 0px;
}

div.esri-legend__message:after {
  content: 'No layers are currently visible on the map. Turn on a layer and/or change the zoom to view the legend for scale-dependent layers.';
  margin-left: -70px;
  background-color: #fff;
}

/* for smaller screens */
@media (max-width: 100px) {
  .esri-view-height-xsmall .esri-expand .esri-widget--panel,
  .esri-view-height-xsmall .esri-expand .esri-widget--panel-height-only,
  .esri-view-height-xsmall .esri-ui-corner .esri-component.esri-widget--panel,
  .esri-view-height-xsmall .esri-ui-corner .esri-component.esri-widget--panel-height-only {
    max-height: 240px;
  }

  .esri-view-height-xsmall .esri-ui-corner .esri-component .esri-expand__content {
    box-shadow: none;
  }
}

/* set the z-index of the scale bar negative or else it shows over top of other widgets */
.esri-component .esri-scale-bar .esri-widget .esri-scale-bar__line {
  z-index: -1 !important;
}

.esri-widget--panel {
  padding-left: 10px;
}

.esri-legend__service {
  /* //display: flex; */
  flex-direction: row-reverse;
  /* //float: left; */
  align-items: flex-end;
}

.esri-legend__service>h3 {
  font-weight: normal;
  margin-left: 10px;
  margin-bottom: 0px;
}

span.esri-icon-locate {
  margin-top: 1px;
}

/* fix for esri map expand buttons on phones */
@media (max-width: 1400px) {
  .esri-expand__container.esri-expand__container--expanded {
    position: relative !important;
    width: auto !important;
  }

}

/* //fix for esri map expand buttons on small screen phones */
@media (max-width: 500px) {
  .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded {
    position: relative;
    /* width: 255px !important; */
    /* height: 175px !important; */
  }

  .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded .esri-expand__panel {
    width: unset;
  }

  .react-toast-notifications__container {
    overflow: visible;
  }

  /* //make toast fit small screens */
  .react-toast-notifications__toast {
    width: unset !important;
  }

  .esri-distance-measurement-2d .esri-widget .esri-widget--panel {
    width: min-content;
  }
}

.esri-widget--button.active,
.esri-widget--button.active:hover,
.esri-widget--button.active:focus {
  cursor: default;
  background-color: #999696;
}

.esri-widget--button.active path,
.esri-widget--button.active:hover path,
.esri-widget--button.active:focus path {
  fill: #e4e4e4;
}

/* on mobile, there is an odd shadow showing up on the expand contents, this removes it */
.esri-expand__content {
  box-shadow: none;
}

/* Fix for some calcite styles */
.esri-widget h3 {
  font-size: 1rem;
}

.esri-widget li {
  margin: 0;
}

.esri-elevation-profile {
  display: grid !important;
  width: 100%;
}

.esri-elevation-profile__footer {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center;
  margin-top: 5px !important;
}

button.esri-elevation-profile-legend__checkbox {
  display: none !important;
}

.esri-elevation-profile-statistics__statistic--hidden {
  display: block;
}

.esri-elevation-profile__prompt-container p {
  display: none;
}

.esri-elevation-profile__prompt-container:after {
  content: 'Select "New Profile" below, then draw a line to generate an elevation profile.';
}

.esri-elevation-profile-statistics {
  /* width: 220px !important; */
  overflow: hidden;
}

button.esri-elevation-profile-settings {
  width: 40px !important;
}

.esri-elevation-profile__actions-container {
  justify-content: unset !important;
}

.esri-elevation-profile__action-button {
  width: unset;
  max-width: max-content;
}

.esri-expand__content .esri-expand__content--expanded {
  overflow: auto !important;
}

.esri-view-height-medium .esri-ui-corner .esri-component .esri-expand__content {
  overflow: auto !important;
}

.esri-view-height-small .esri-ui-corner .esri-component .esri-expand__content {
  overflow: auto !important;
}

.spinnerMarginTop {
  margin-top: 1rem;
  font-size: larger;
  font-weight: bolder;
}

.ParentChildCombo_Form {
  width: 100%;
}

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

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

.pagwisSearchForm_downloadToast {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchCustomDiv {
  flex: 1 100%;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
}

.simTextWidgetH6 {
  margin-left: 15px;
  line-height: 1.6;
}

.centeredSliderLegend {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.radarIntensityImage {
  padding-left: 10px;
  padding-right: 10px;
}

.hidetimeSliderContainer {
  display: none;
}

.showtimeSliderContainer {
  display: block;
}

.searchWidget_td {
  margin-top: 20%;
  text-align: center;
}

.searchWidget_table {
  width: 90%;
  margin-left: 8%;
  margin-top: 2%;
}

.searchWidget_select {
  max-width: 250;
}

.singleTextSearchWidget_div {
  height: 250;
}

.intentToDrill_CardImg {
  width: fit-content;
  align-self: center;
}

.nuclearFacilities_BottomUnset {
  margin-bottom: unset;
}

.nuclearFacilities_pieLabelStyle {
  width: 15%;
}

.nuclearFacilities_div1 {
  text-align: center;
}

.plumeModel_ul {
  font-size: smaller;
}

.plumeModel_InputGroupText {
  width: 30%;
}

.plumeModel_InputGroupButton {
  width: 90%;
}

.plumeModel_div1 {
  text-align: center;
}

.plumeModel_Input {
  width: 25%;
}

.prt_list_ul {
  list-style: none;
  margin-left: -20px;
}

.prt_list_li {
  text-align: initial;
}

.prt_InputGroup {
  display: flex;
  flex-wrap: nowrap;
}

.prt_customFormikFieldAddon {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

.traceDownstream_list_ul {
  list-style: none;
  margin-left: -20px;
}

.traceDownstream_list_li {
  text-align: initial;
}

.traceDownstream_customConnectingLine {
  width: 77%;
}

.traceDownstream_customNavTabs {
  flex-wrap: unset;
}

.traceDownstream_InputGroup {
  display: flex;
  flex-wrap: nowrap;
}

.traceDownstream_customFormikFieldAddon {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

.traceDownstream_AlignCenter {
  text-align: center;
}

.orphanedWells_customNavTabs {
  flex-wrap: unset;
}

.orphanedWell_redText {
  color: red !important;
}

.orphanedWell_specialRowHeight {
  max-height: 10px;
}

.orphanedWells_connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 75%;
  margin: 0 auto;
  left: 5px;
  right: 0;
  top: 22px;
  z-index: 1;
}

.orphanedWells_alignLeft {
  text-align: left;
}

.nhd_locatorWizard {
  word-wrap: unset;
}

.card {
  word-wrap: unset;
}

.trackGPS_InlineFlex {
  display: inline-flex;
}

.detailsComponents_Capitalize {
  text-transform: capitalize;
}

.detailsComponents_td1 {
  text-transform: none;
  vertical-align: text-top;
}

.detailsComponents_a {
  text-transform: none;
  cursor: pointer;
  color: #531fff;
}

.displayComponents_yes-class {
  height: 32px;
  width: 32px;
  cursor: pointer;
}

.displayComponents_no-class {
  height: 32px;
  width: 32px;
  cursor: default;
}

.displayComponents_Flex {
  display: flex;
}

.brcChartMainDiv {
  margin-left: 25px;
}

.identifyResults_PagingContainer {
  align-items: center;
}

.identifyResultsCustomCardBody {
  width: 90%;
  padding: 0px;
}

.identifyCardBodyPadding {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.identifyResultsComponent_div3 {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  width: 100%;
  text-align: center;
  color: black;
  /* Changed to black from gray for better visibility */
  align-items: center;
  /* vertically aligns content in the center */
  justify-content: center;
  /* horizontally aligns content in the center */
}

.identifyResultsComponent_button2 {
  border: none;
  outline: none;
  padding: 4px;
  /* background-color: #ebebeb; */
  color: black;
  vertical-align: middle;
}

.identifyResultsComponent_CardButtonHeader {
  /* max-width: 200px; */
  word-wrap: break-word;
  text-align: left;
}

.identifyResultsComponent_PaginationBaseline {
  align-items: center;
}

.identifyResultsComponent_PagingArrowPointingLeft {
  transform: rotate(90deg);
}

.identifyResultsComponent_PagingArrowPointingRight {
  transform: rotate(-90deg);
}

.identifyResultsComponent_DetailsComponent {
  padding: 0px !important;
  width: 100% !important;
}

.tertiaryDetailInfo_div4_pointer {
  cursor: pointer;
}

.pagwisSearch_div1 {
  flex: 1 100%;
}

.pagwisSearch_div2 {
  flex-flow: row-reverse;
}

.pagwisSearch_colorRed {
  color: red;
}

.clearMapTool_div {
  background-color: #fff;
  border-width: 0px;
  height: 32px;
  width: 32px;
  cursor: pointer;
  padding: 5px;
}

.govsec a {
  text-decoration: none;
  color: inherit;
  font-size: small;
}

.govsec a:hover {
  text-decoration: none;
  /* still no underline on hover */
}

@media only screen and (max-width: 767px) {
  .table-responsive {
    overflow-y: auto;
    height: unset;
    height: 200px;
  }
}

.react-date-picker__wrapper {
  border: none !important;
}


@media (max-width: 768px) {
  .react-datepicker-wrapper {
    width: 100%;
  }

  .react-datepicker__input-container {
    width: 100%;
  }
}

#QueryResultsDiv {
  padding-right: 5px;
}

@media (max-width: 1400px) {
  #QueryResultsDiv {
    padding-left: 10px;
  }
}
.tertiaryCardHeader {
  margin-left: 30px;
  text-transform: none;
}

.QuickIdContainer {
  /* display: flex;
  flex-direction: column;
  padding-left: 10px; */
  position: relative;
  /* padding: 20px; */
  /* Adjust as needed */
}

.QuickIdEmpty {
  margin-top: 5px;
  text-align: center;
}

.QuickIdComponent_button {
  height: 30px;
}

.QuickIdComponent_VscGlobe {
  font-size: 16px;
  vertical-align: unset;
}

.quickIdTable {
  font-size: 14px !important;
}

.flexLayout {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  display: inline-block;
  margin-left: -5px;
  margin-right: 5px;
  min-width: -webkit-fill-available;
}

.flexLayoutSpatialSearches {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
}

#tabContent::-webkit-scrollbar {
  height: 12px;
  width: 12px;
  /* width of the entire scrollbar */
}

#tabContent::-webkit-scrollbar-button:vertical {
  background-color: transparent;
  background-size: 10px 9px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 12px;
  width: 1em;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAACXSURBVDhPnY9BEoAgCEXRTuBRPKF5QoeTuHVXwURjik72NqTA+2aOCxjgveeaUuKqMRTEGEFaxhgIIfB3i71rR+2dPFIXUHqLdkeoAi1x9IpOMEoitF4nmP2v1nsJZulCO/MSzNKFduYRfEkX6tlH8CVdqGdZsJIuyA4LVtIF2dmcc3sphQ+rICLYnPN9XId2LVn+gohwAkeUVKDDXfM/AAAAAElFTkSuQmCC);
}

#tabContent::-webkit-scrollbar-button:end:increment:vertical {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAACTSURBVDhPnZDREQARDETRgUqMTnSiBCUaFd3dZjDu5Ix4PxGymx06hHA559QJpRRlTsUAWmOtra0caE2MsbZyoDU4aK3pQkLTkEFKiRoJTUMGQJJinO0GkhTjbDcAOym+My+DnRTfmZcBWKXg3iaDVQrubTIA3Ka/ZKwBt+kvGWsAxo3Lf7ke6nnCe08150x1Rqkbg2QfKlY89aEAAAAASUVORK5CYII=);
  cursor: pointer;
}

#tabContent::-webkit-scrollbar-button:horizontal {
  background-color: transparent;
  background-size: 10px 9px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 12px;
  width: 1em;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAB0SURBVDhPrdPbDYAgDIXhlo0YkRGYjHQSRvAWDkZCmrbxe1ETz/+AkY8LOdVaqfdOIkKuQCmF1tdNgd0Q1IA2hG3AMoRPwDOEJxAZQso5h8e3NK5hqbVGzDwe/f45xHE/hT/jyhJSA6CFTAHYhVwBeH9noRPjP3lGfgup0wAAAABJRU5ErkJggg==);
}

#tabContent::-webkit-scrollbar-button:end:increment:horizontal {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAB2SURBVDhPvdPbCcAgDIXhk27gJOImbuIIjuhI6QXPSyVELfR/agr5oEol56wxRoQQUErBalJr1f78JCK43vXJbwDYLGQCzINcgFnQNMDe0DLACB19Xk5VkVLaB9g2cH9Ca+3HQ9y+RmuRmYC3yAZgdpF9/J2BE3VdOeDQe3TsAAAAAElFTkSuQmCC);
  cursor: pointer;
}

#tabContent::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

#tabContent::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(linear,
      left bottom,
      left top,
      color-stop(0.44, rgba(0, 0, 0, 0.4)),
      color-stop(0.72, grey),
      color-stop(0.86, rgba(0, 0, 0, 0.3)));
}

.show {
  display: flex;
}

.LODWidget {
  padding: 5px;
  font-weight: 700;
  background-color: white;
  opacity: .75;
}

.splitterSidebar_ArrowClassRotate0 {
  transform: rotate(0deg);
}

.splitterSidebar_ArrowClassRotate90 {
  transform: rotate(-90deg);
}

.authenticationApp_div1 {
  background-color: #f8d7da;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 10px;
}

.authenticationApp_p {
  font-weight: bold;
  color: #721c24;
  margin-bottom: 10px;
}

.authenticationApp_div2 {
  font-size: 24px;
  color: #1e90ff;
  text-align: center;
}

.formikSignin_container {
  height: 100vh;
}



.createLayerList_PennEviroScreen_a {
  color: slateblue;
  text-decoration: underline;
}

div.BrcchartWin {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Wizard Style ------------------------------------------------------------------------------*/

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.wizard .nav-tabs {
  position: relative;
  margin-bottom: 0;
  border-bottom-color: transparent;
}

.wizard>div.wizard-inner {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  padding: 8px;
}

.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 78%;
  margin: 0 auto;
  left: 5px;
  right: 0;
  top: 22px;
  z-index: 1;
}

.wizard .nav-tabs>li.active>a,
.wizard .nav-tabs>li.active>a:hover,
.wizard .nav-tabs>li.active>a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

.wizard .nav-tabs>li a i {
  display: none;
}

span.round-tab {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 16px;
  color: #0e214b;
  font-weight: 500;
  border: 1px solid #ddd;
}

span.round-tab i {
  color: #555555;
}

.wizard li.active span.round-tab {
  background: #0db02b;
  color: #fff;
  border-color: #0db02b;
}

.wizard li.active span.round-tab i {
  color: #5bc0de;
}

.wizard .nav-tabs>li.active>a i {
  color: #0db02b;
}

.wizard .nav-tabs>li {
  width: 25%;
}

.nuclearWizard {
  width: 20% !important;
}

.wizard li:after {
  content: ' ';
  position: absolute;
  left: 46%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: red;
  transition: 0.1s ease-in-out;
}

.wizard .nav-tabs>li a {
  width: 30px;
  height: 30px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0;
  background-color: transparent;
  position: relative;
  top: 0;
}

.wizard .nav-tabs>li a i {
  position: absolute;
  top: -15px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.wizard .nav-tabs>li a:hover {
  background: transparent;
}

.wizard .tab-pane {
  position: relative;
  /* padding-top: 20px; */
}

.wizard h3 {
  margin-top: 0;
}

.form-control[disabled],
.form-control[readonly] {
  background-color: #fdfdfd;
}

.huntingHoursWidget_Hyperlink {
  color: #0056b3;
}

.SeasonBagLimits_filterCheckbox {
  padding-left: 25px;
}

.TrackGPS_latitudeSection {
  display: inline-flex;
  margin-top: 5px;
}

.TrackGPS_SampleCSVLink {
  color: #531fff;
  text-decoration: underline;
}

.TrackGPS_csvUploader {
  align-items: center;
  border: 2px dashed #ccc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 20px;
  border-color: #686868;
}

.TrackGPS_csvUploader_file {
  background: linear-gradient(to bottom, #eee, #ddd);
  border-radius: 20px;
  display: flex;
  height: 120px;
  width: 120px;
  position: relative;
  z-index: 10;
  flex-direction: column;
  justify-content: center;
}

.TrackGPS_csvUploader_info {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}

.TrackGPS_csvUploader_size {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  margin-bottom: 0.5em;
  justify-content: center;
  display: flex;
}

.TrackGPS_csvUploader_name {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  margin-bottom: 0.5em;
  font-size: 12px;
}

.TrackGPS_csvUploader_progressBar {
  position: absolute;
  bottom: 14px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.TrackGPS_csvUploader_remove {
  height: 23px;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 23px;
}

.AntlerRestriction_btnDiv {
  text-align: center;
}

/* Make the dialog nearly full width on desktop */
.authDocsModal.modal-dialog {
  max-width: 95vw;
  width: 95vw;
}

/* Optional: tighten content padding a bit */
.authDocsModalContent .modal-body {
  padding: 0.75rem 1rem;
}

/* Table tweaks so everything fits without horizontal panning */
.authDocsTableWrap {
  width: 100%;
}

.authDocsTable th,
.authDocsTable td {
  white-space: nowrap;
  /* keep dates on one line */
  padding: .4rem .5rem;
  /* compact cells to fit more columns */
  vertical-align: middle;
}

.authDocsTable thead th {
  position: sticky;
  top: 0;
  /* header sticks if body scrolls vertically */
  background: #fff;
  z-index: 1;
}
