/* --------------------------------------------- */
/* Fonts and Typography */
/* --------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

/* Kobern Regular */
@font-face {
    font-family: "Kobern-Regular";
    src: url("fonts/Kobern-Regular.eot");
    src: url("fonts/Kobern-Regular.woff2") format("woff2"),
        url("fonts/Kobern-Regular.woff") format("woff"),
        url("fonts/Kobern-Regular.ttf") format("truetype"),
        url("fonts/Kobern-Regular.svg#Kobern-Regular") format("svg"),
        url("fonts/Kobern-Regular.eot?#iefix") format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Kobern Italic */
@font-face {
    font-family: "Kobern-Italic";
    src: url("fonts/Kobern-Italic.eot");
    src: url("fonts/Kobern-Italic.woff2") format("woff2"),
        url("fonts/Kobern-Italic.woff") format("woff"),
        url("fonts/Kobern-Italic.ttf") format("truetype"),
        url("fonts/Kobern-Italic.svg#Kobern-Italic") format("svg"),
        url("fonts/Kobern-Italic.eot?#iefix") format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Kobern Bold */
@font-face {
    font-family: "Kobern-Bold";
    src: url("fonts/Kobern-Bold.eot");
    src: url("fonts/Kobern-Bold.woff2") format("woff2"),
        url("fonts/Kobern-Bold.woff") format("woff"),
        url("fonts/Kobern-Bold.ttf") format("truetype"),
        url("fonts/Kobern-Bold.svg#Kobern-Bold") format("svg"),
        url("fonts/Kobern-Bold.eot?#iefix") format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Typography Settings */
body,
html {
    overflow-x: hidden;
    font-family: 'Kobern-Regular', sans-serif;
    font-size: 18px;
    color: #414142;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

a {
    font-weight: 500;
    color: #367689;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #367689;
}

figcaption h4 {
    color: #fff;
    font-size: 1.2em;
}

.btn-primary {
    background-color: #367689;
    border-color: #367679 !important;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #367689;
    border-color: #367679;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #367689;
    border-color: #367679;
}

.btn-primary:hover {
    color: #fff;
    background-color: #367689;
    border-color: #367679;
}


/* --------------------------------------------- */
/* Layout and Spacing */
/* --------------------------------------------- */
.container {
    padding: 1.3em;
}

.section {
    min-height: 100vh;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.main-content {
    position: relative;
    transition: margin-left 0.3s ease-in-out;
    background: url('./img/roadmap-background-01.svg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    .main-content {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}




/* Outer container for the sign */
.street-sign {
    background-color: #54a49d;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Inner element with white border */
.sign-border {
    background-color: #54a49d;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
}

/* Text inside the sign */
.sign-text {
    color: #fff;
    font-size: 2.1rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

@media screen and (max-width: 992px) {
    .street-sign {
        margin: 1rem auto;
    }

    .sign-text {
        font-size: 1.5rem;
    }
}

/* General Card Styles */
.card-license-plate {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

/* Inner element with white border */
.card-border {
    border: 2px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

/* Individual Card Colors */
.card-color-1 {
    background-color: #98cdcd;
}

.card-color-2 {
    background-color: #c45627;
}

.card-color-3 {
    background-color: #f4b753;
}

.card-color-4 {
    background-color: #367689;
}

.card-color-5 {
    background-color: #e4923f;
}

.card-color-6 {
    background-color: #54a49d;
}


/* Text styling for content inside the card */
.card-text {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.text-shadow {
    text-shadow: 1px 1px 1px rgba(0, 0, 0);
}

span.h2.text-white.text-shadow {
    font-size: 2.5rem;
}

/* Additional styles for icons */
.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Subtitle text under the main content */
.card-subtext {
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 8px;
    /*    border-top: 2px dotted rgba(255, 255, 255, 0.7);*/
    padding-top: 8px;
    font-style: italic;
}

.toggle-filter {
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.toggle-filter:hover {
    background-color: #e4923f;
    /* Bootstrap primary color */
    color: white;
}

.not-filter {
    font-weight: bold;
    background-color: #f8f9fa;
    /* Light background for differentiation */
    border-color: #e4923f;
    /* Bootstrap primary color */
    transition: background-color 0.3s, color 0.3s;
}

.not-filter:hover {
    background-color: #e4923f;
    color: white;
}

.rounded-left {
    border-top-left-radius: 0.375rem;
    /* Customizing Bootstrap border radius */
    border-bottom-left-radius: 0.375rem;
}

.rounded-right {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.bg-light-trans {
    background-color: rgba(248, 249, 250, 0.6) !important;
}



/* --------------------------------------------- */
/* Sidebar Navigation */
/* --------------------------------------------- */
/* Sidebar Navigation */
#sidebarMenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #343a40;
    color: #fff;
    padding-top: 20px;
    z-index: 11;
    transform: translateX(0);
    background: rgba(52, 58, 64, 0.9);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
    overflow-y: auto; /* Enable vertical scrolling */
    -ms-overflow-style: none;  /* For Internet Explorer 10+ */
    scrollbar-width: none;  /* For Firefox */
}

/* Hide the scrollbar */
#sidebarMenu::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Webkit browsers (Chrome, Safari) */
}

/* Ensure content inside sidebar is scrollable */
#sidebarMenu.open {
    transform: translateX(0);
}


#sidebarMenu.closed {
    transform: translateX(-100%);
}

button.close {
  font-size: 1.5rem; /* Default Bootstrap size */
  font-weight: bold;
  color: #000; /* Black */
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

button.close:hover {
  opacity: 0.75;
}

@media (max-width: 992px) {
    #sidebarMenu {
        transform: translateX(-100%);
        width: 250px;
    }

    #sidebarMenu.open {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    #sidebarMenu {
        width: 66%; /* Full width for very small screens */
    }
}

/* --------------------------------------------- */
/* Hamburger Button */
/* --------------------------------------------- */
#menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    #menu-toggle {
        display: inline-block; /* Show on smaller screens */
    }
}

/* --------------------------------------------- */
/* Main Content */
/* --------------------------------------------- */
.main-content {
    margin-left: 250px; /* Matches the sidebar's default width */
    transition: margin-left 0.3s ease-in-out;
}

.main-content.sidebar-closed {
    margin-left: 0; /* Adjust for closed sidebar */
}

@media (max-width: 992px) {
    .main-content {
        margin-left: 0;
    }

    .main-content.sidebar-open {
        margin-left: 250px; /* Shift content when sidebar is open */
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0; /* No margin for small screens */
    }
}

/* --------------------------------------------- */
/* Social Icons */
/* --------------------------------------------- */
.social-icons {
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.5rem 1rem;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #343a40;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    text-decoration: none;
}

.social-icon i,
.social-icon img {
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
}

.social-icon:hover {
    transform: scale(1.1);
    text-decoration: none;
}

/* Social Icon Brand Colors */
.social-icon[href*="facebook"]:hover {
    background-color: #1877f2;
    color: #fff;
}

.social-icon[href*="twitter"]:hover {
    background-color: #1da1f2;
    color: #fff;
}

.social-icon[href*="instagram"]:hover {
    background-color: #e1306c;
    color: #fff;
}

.social-icon[href*="youtube"]:hover {
    background-color: #ff0000;
    color: #fff;
}

.social-icon[href*="linkedin"]:hover {
    background-color: #0a66c2;
    color: #fff;
}

.social-icon[href*="spotify"]:hover {
    background-color: #1DB954;
    color: #fff;
}

.social-icon[href*="download"]:hover {
    background-color: #6c757d;
    color: #fff;
}

@media (max-width: 768px) {
    .social-icon {
        width: 36px;
        height: 36px;
        margin: 0.3rem 0.3rem 0.8rem;
    }
}




/* --------------------------------------------- */
/* Navigation Buttons */
/* --------------------------------------------- */
/* Ensure the navigation buttons do not overlap content */
.main-content {
    padding-bottom: 70px; /* Add space for .nav-buttons */
}

/* --------------------------------------------- */
/* Navigation Buttons */
/* --------------------------------------------- */
.nav-buttons {
    position: fixed;
    bottom: 0;
    left: 250px;
    right: 0;
    max-width: calc(100% - 250px);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f4f4f4;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}

.turn-signal {
    display: flex;
    align-items: center;
    background: none !important;
    border: none;
    padding: 10px;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease-in-out;
}

.turn-signal:hover {
    transform: scale(1.1);
}

.signal-lights {
    display: flex;
    gap: 5px;
    margin-right: 10px; /* Space between dots and chevron */
}

.signal-light {
    width: 10px;
    height: 10px;
    background-color: #414142;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.chevron {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #343a40;
}

/* --------------------------------------------- */
/* Navigation Buttons */
/* --------------------------------------------- */
.nav-buttons {
  position: fixed;
  bottom: 0;
  left: 250px;
  right: 0;
  max-width: calc(100% - 250px);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f4f4f4;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}

.turn-signal {
  display: flex;
  align-items: center;
  background: none !important;
  border: none;
  padding: 10px;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s ease-in-out;
}

.signal-lights {
  display: flex;
  gap: 5px;
  margin-right: 10px;
}

.signal-light {
  width: 10px;
  height: 10px;
  background-color: #414142;
  border-radius: 50%;
}

/* Chevron */
.chevron {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #414142;
  transition: color 0.3s ease-in-out;
}

/* Animation Keyframes for Signal Lights */
@keyframes signal-blink-next {
  0% {
    transform: scale(1);
    background-color: #414142;
  }
  20% {
    transform: scale(1.3);
    background-color: #e4923f;
  }
  40% {
    transform: scale(1);
    background-color: #414142;
  }
}

@keyframes signal-blink-prev {
  0% {
    transform: scale(1);
    background-color: #414142;
  }
  20% {
    transform: scale(1.3);
    background-color: #e4923f;
  }
  40% {
    transform: scale(1);
    background-color: #414142;
  }
}

/* Repeating Animation for Next Button */
#next-button:hover .signal-light:nth-child(1) {
  animation: signal-blink-next 1s infinite ease-in-out;
  animation-delay: 0s;
}

#next-button:hover .signal-light:nth-child(2) {
  animation: signal-blink-next 1s infinite ease-in-out;
  animation-delay: 0.2s;
}

#next-button:hover .signal-light:nth-child(3) {
  animation: signal-blink-next 1s infinite ease-in-out;
  animation-delay: 0.4s;
}

/* Repeating Animation for Previous Button */
#prev-button:hover .signal-light:nth-child(3) {
  animation: signal-blink-prev 1s infinite ease-in-out;
  animation-delay: 0s;
}

#prev-button:hover .signal-light:nth-child(2) {
  animation: signal-blink-prev 1s infinite ease-in-out;
  animation-delay: 0.2s;
}

#prev-button:hover .signal-light:nth-child(1) {
  animation: signal-blink-prev 1s infinite ease-in-out;
  animation-delay: 0.4s;
}

/* Chevron Hover Effect with Smooth Blink Animation */
@keyframes chevron-blink {
  0% {
    color: #343a40;
    transform: scale(1);
  }
  70% {
    color: #e4923f;
    transform: scale(1.3);
  }
  100% {
    color: #343a40;
    transform: scale(1);
  }
}

/* Repeating Animation for Next Button Chevron */
#next-button:hover .chevron,
#prev-button:hover .chevron {
  animation: chevron-blink 1s infinite ease-in-out;
  animation-delay: 0.2s; /* Reduced delay */ 
}
/* --------------------------------------------- */
/* Responsive Adjustments */
/* --------------------------------------------- */
@media (max-width: 992px) {
    .nav-buttons {
        left: 0; /* Reset sidebar offset */
        max-width: 100%; /* Full width */
    }
}

/* --------------------------------------------- */
/* Utility Classes */
/* --------------------------------------------- */
.text-center {
    text-align: center;
}

.text-muted {
    color: #6c757d;
}

.page-content {
    position: relative;
    filter: none;
    transition: filter 0.3s ease-in-out;
}

.wiper {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 5vw;
    height: 120vh;
    background: url('https://centerstone.org/wp-content/uploads/Windshield-Wiper-SVG-03.svg') no-repeat center center;
    background-size: contain;
    transform-origin: bottom center;
    transform: rotate(-120deg);
    z-index: 10;
    transition: transform 0.3s ease;
}

.smear {
    filter: url(#smear-effect);
    transition: filter 0.3s ease;
}

.animated-underline {
    position: relative;
    text-decoration: none;
    color: #dadada;
    transition: color 0.3s ease;
}

.animated-underline:hover,
.animated-underline.active {
    color: #f4b753;
}

.animated-underline::before {
    content: "";
    position: absolute;
    height: 3px;
    bottom: 0;
    left: 0;
    right: 100%;
    background-image: linear-gradient(to right, #f4b753, #ffedba, #f4b753);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.animated-underline:hover::before,
.animated-underline.active::before {
    visibility: visible;
    left: 0;
    right: 0;
}



/**/


#donorList {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.donor-category {
    margin-bottom: 40px;
}

.donor-category h3 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.donor-grid .col-md-3 {
    margin-bottom: 15px;
}

.donor-name {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
}

/* Thumbnail hover effect */
#patient-stories .stories .img-fluid:hover {
    transform: scale(1.05); /* Slightly increase size */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

#patient-stories .stories .img-fluid {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Ensure smooth transition */
}


.pie-chart {
    height: 365px;
    position: relative;
    overflow: hidden;
}

.card-img-overlay {
    background: #414142;
    opacity: 0.8;
}

.card-img-overlay.default_opacity {
    opacity: 0 !important;
}

.card-title-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.hover-excerpt {
    background-color: #e4923f;
    transition: all 0.5s cubic-bezier(0, 1, 0.5, 1);
    overflow: hidden;
    height: 65px;
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.pie-chart:hover .hover-excerpt {
    height: 365px;
    color: #fff;
}

.modal {
    z-index: 99999;
}

/* Lightbox Gallery Styles */
/* Wrapper for consistent image sizes */
#lightbox_gallery_shortcode .img-wrapper {
    width: 100%;
    height: 150px; /* Uniform height */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden; /* Contain image overflow */
}

/* Image inside the wrapper */
#lightbox_gallery_shortcode img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
    object-position: center; /* Center image */
}

/* Hover effect on the column */
#lightbox_gallery_shortcode .lightbox-col:hover {
    transform: scale(1.05) translate(-3px, -3px); /* Slight zoom and slide effect on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
    z-index: 2; /* Ensure hovered column appears above others */
}


@media (max-width: 991.98px) {
    img.float-lg-left,
    img.float-lg-right {
        float: none !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.patient-stories {
    max-width: 500px;
    width: 100%; /* Ensure it takes up full width when scaled */
}

@media (max-width: 991.98px) { /* Matches Bootstrap's 'lg' breakpoint */
    .patient-stories {
        max-width: 100%;
    }
}



#donorTabsContent .row > div {
  padding: 10px 15px; /* Padding for spacing */
  border-radius: 5px; /* Rounded corners */
  margin-bottom: 10px; /* Space below the row */
}

#donorTabsContent ul {
  padding-left: 0; /* Remove default padding */
}

#donorTabsContent li {
  margin-bottom: 5px; /* Add spacing between list items */
  font-size: 1rem; /* Set readable font size */
  line-height: 1.4; /* Improve line spacing */
}



/* List Container Styling */
#donors .list-unstyled li,
#honorary .list-unstyled li,
#memorial .list-unstyled li,
#sapphire .list-unstyled li,
#endowment .list-unstyled li,
#invested .list-unstyled li,
#reclaimingLives .list-unstyled li {
  background-color: #f9f9f9; /* Light gray background */
  border: 1px solid #ddd; /* Subtle border */
  border-radius: 5px; /* Rounded corners */
  padding: 10px 15px; /* Inner spacing */
  margin-bottom: 10px; /* Space between cards */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Light shadow */
  line-height: 1.4; /* Improve readability */
}

/* Add subtle bullet or icon */
#donors .list-unstyled li::before,
#honorary .list-unstyled li::before,
#memorial .list-unstyled li::before,
#sapphire .list-unstyled li::before,
#endowment .list-unstyled li::before,
#invested .list-unstyled li::before,
#reclaimingLives .list-unstyled li::before {
  content: "•";
  color: #e4923f; /* Bootstrap primary blue */
  font-size: 1.2rem;
  margin-right: 8px;
  display: inline-block;
}

/* Two or three column layout adjustments */
.col-md-6 .list-unstyled li,
.col-md-4 .list-unstyled li {
  padding: 10px;
  margin-bottom: 15px; /* Slightly larger gap for spacing */
}

#annual-report-24 {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#annual-report-24 img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

@media screen and ( min-width: 992px ) {
    #annual-report-24 img {
        max-width: 550px;
    }

}

/* Custom nav-tabs look */
.nav-tabs {
    border-bottom: none; /* Remove default bottom border */
    display: flex;
    justify-content: space-between; /* Even spacing between tabs */
}

.nav-tabs .nav-item {
    margin: 0 10px; /* Space between items */
}

.nav-tabs .nav-link {
    border: none; /* Remove Bootstrap's borders */
    border-radius: 0; /* Remove rounded corners */
    background-color: transparent; /* Transparent background */
    color: #333; /* Dark gray text */
    font-weight: 600; /* Slightly bold */
    text-transform: uppercase; /* Optional: Uppercase tabs */
    padding: 10px 15px; /* Spacing inside tabs */
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Active tab */
.nav-tabs .nav-link.active {
    color: #fff; /* White text for active tab */
    background-color: #e4923f; 
    border-radius: 5px; /* Add slight rounding for active tab */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover effect */
.nav-tabs .nav-link:hover {
    color: #e4923f;
    background-color: #f8f9fa; /* Light gray hover background */
    border-radius: 5px; /* Match active tab rounding */
}

/* Optional: Remove focus outline */
.nav-tabs .nav-link:focus {
    outline: none;
    box-shadow: none;
}


/* Modal content container */
.modal-content {
    max-height: 90vh; /* Modal height capped at 90% of the viewport height */
    overflow: hidden; /* Prevents overall content overflow */
}

/* Scrollable tab content */
.tab-content {
    max-height: 70vh; /* Cap the tab content height at 70% of the viewport height */
    overflow-y: auto; /* Enables vertical scrolling when content exceeds the height */
    overflow-x: hidden;
    padding-right: 10px; /* Optional: Prevent scrollbar overlap */
}

/* Optional: Make search bar sticky at the top */
.tab-pane input.form-control {
    position: sticky;
    top: 0;
    z-index: 10; /* Keeps it above scrolling content */
    background-color: #fff; /* Matches background to avoid overlap */
}


.memory-from {
    margin-left: 1rem;
    font-weight: 200;
    font-size: 0.9rem;
}


.impactIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
/*    border-radius: 50%;*/
    margin-right: 10px;
}

#sidebarMenu a.nav-link {
    font-size: 0.95rem;
}
