:root {
    --main-font-color: #bb005d;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
small {
    margin: 0;
    padding: 0;
}

/*----------- HOMEPAGE STYLING ------------*/
.main-container {
    overflow-x: hidden;
}

.global-form {
    height: calc(600px - 50px);
    overflow-y: scroll;
    scrollbar-width: none;
    padding-bottom: 5rem;
}

.swal-modal .swal-text,
.swal-footer {
    text-align: center;
    font-weight: 500;
}

/*=========> HOME TOPBAR STYLING */
.home-topbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--main-font-color);
    transition: all 0.1s ease-in-out;
    opacity: 1;
    height: 45px;
}

.home_topbar.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.home-topbar a {
    text-decoration: none;
    color: var(--white);
}

.home-topbar .home_fb_link a {
    padding: 1rem 1.5rem;
    transition: 500ms ease-in-out;
}

.home-topbar .home_fb_link a:hover {
    background-color: white;
    color: #000000;
}

.home-topbar .login_topbar a {
    padding: 1rem 1.5rem;
    transition: 500ms ease-in-out;
}
.home-topbar .login_topbar a:hover {
    background-color: white;
    color: #000000;
}

/*=========> SCROLL TO TOP STYLING */
.goTop {
    background-color: #d4006a;
    width: 50px;
    height: 50px;
    text-decoration: none;
    color: white;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    text-align: center;
    line-height: 55px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.goTop i {
    font-size: 1.25rem;
}

.goTop.visible {
    opacity: 1;
    visibility: visible;
}

/*=========> NAVBAR STYLING */

/* Home navigation container */
.home-nav {
    position: relative;
    background: white;
    height: 82px; /* Set the height of the home-nav */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation links container */
.home-nav .nav_links {
    display: flex; /* Make nav_links a flex container */
    height: 100%; /* Ensure nav_links takes full height of home-nav */
    width: 100%; /* Stretch nav_links horizontally */
    justify-content: center; /* Align items horizontally */
    align-items: center;
}

/* List items within the navigation */
.home-nav .nav_links li {
    position: relative;
    list-style-type: none;
    height: 100%; /* Ensure the li takes full height of nav_links */
}

/* Top-level anchor tags */
.home-nav .nav_links li a {
    display: flex; /* Make the a tag a flex container */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    height: 100%; /* Ensure a tag takes full height of li */
    padding: 0 2rem; /* Adjust padding for horizontal space */
    color: #000000;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
}

/* ::after effect only for top-level links */
.home-nav .nav_links > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #bb005d;
    width: 0; /* Default width to 0 */
    transition: width 0.3s ease;
}

/* Hover effect to expand underline */
.home-nav .nav_links > li > a:hover::after {
    width: 100%; /* Full width on hover */
}

/* Dropdown (sub-link) menu styling */
.home-nav li .sub-link {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 35px;
    visibility: hidden;
    z-index: 10;
    background-color: #ffffff;
    width: 260px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
}

/* Ensure no ::after is applied to sub-link anchors */
.home-nav li .sub-link li a::after {
    content: none;
}

/* Sub-link list items */
.home-nav li .sub-link li {
    width: 100%;
}

/* Sub-link anchor tags */
.home-nav li .sub-link li a {
    padding: 1rem 1.5rem;
    width: 100%;
    color: #000000;
    text-decoration: none;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for sub-link anchor tags */
.home-nav li .sub-link li a:hover {
    background-color: #bb005d;
    color: #ffffff;
}

/* Show sub-links when hovering over top-level items */
.home-nav li:hover ul.sub-link {
    opacity: 1;
    visibility: visible;
    top: 80px; /* Adjust the position when hovering */
}

/* Hover effect for top-level anchor background */
.home-nav .nav_links li a:hover {
    background-color: #f2f2f2;
    color: #bb005d; /* Change color on hover */
}

.home-nav .menu-bar {
    display: none;
}

.home-nav .menu-bar img {
    width: 30px;
    rotate: 360deg;
}

.home-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 1px 2px 1px #00000050;
}

.offcanvas-body .proceed_btn {
    color: white;
    background-color: var(--main-font-color);
    border-radius: 10px;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
}

.offcanvas-body .proceed_btn a {
    font-size: 1.1rem;
}

.navbar-nav li a i {
    font-size: 1.25rem;
}

.navbar-nav li a {
    font-size: 0.9rem;
    color: #000000;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 1rem 0.6rem;
    font-weight: 600;
}
.navbar-nav li a:hover {
    background-color: var(--main-font-color);
    color: white;
}

.home-topbar .profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--main-font-color);
}

.home-topbar .profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.home-topbar .profile {
    cursor: pointer;
    position: relative;
}

.home-topbar .dropdown-menu {
    display: none;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    position: absolute;
    top: 100%;
    left: -50px;
    z-index: 1000;
    width: 200px;
}

.home-topbar .dropdown-menu a {
    color: #000;
}

.home-nav .homebar-profile-dropdown {
    display: none !important;
}

/* .home_logo a {
    color: var(--main-font-color);
    font-size: 1.65rem;
    text-decoration: none;
}

.home_nav div:nth-child(1) {
    display: none;
}

.home_nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 4rem;
    transition: 0.6s;
    z-index: 5;
    background-color: white;
    position: static;
    transition: all 0.3s ease-in-out;
}

.home_nav .profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--main-font-color);
}

.home_nav .profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.home_nav .profile {
    cursor: pointer;
    position: relative;
}

.home_nav .dropdown-menu {
    display: none;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    position: absolute;
    top: 100%;
    left: -50px;
    z-index: 1000;
    width: 200px;
}


.navbar-nav li a i {
    font-size: 1.25rem;
}

.navbar-nav li a {
    font-size: 1.1rem;
    color: #000000;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 1rem 0.6rem;
    font-weight: 600;
}
.navbar-nav li a:hover {
    background-color: var(--main-font-color);
    color: white;
}

.home_nav .nav_links {
    display: flex;
}

.home_nav .menu-bar {
    display: none;
}

.home_nav .menu-bar img {
    width: 30px;
    rotate: 360deg;
}

.home_nav .nav_links li {
    list-style-type: none;
    margin: 0 1rem;
}

.home_nav .nav_links li a {
    text-decoration: none;
    color: #000000;
    position: relative;
}

.home_nav .nav_links li a::before {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #fc76ba;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: all 500ms ease-in-out;
}

.home_nav .nav_links li a.activeLink::before {
    width: 100%;
}
.home_nav .nav_links .home_login {
    text-decoration: none;
    background-color: var(--main-font-color);
    border: 1px var(--main-font-color) solid;
    color: white;
    padding: 0.5rem 1.25rem;
    transition: 500ms ease-in-out;
}
.home_nav .nav_links .home_login:hover {
    color: var(--main-font-color);
    border: 1px var(--main-font-color) solid;
    background-color: white;
}
    */

/*=========> HERO CONTAINER STYLING */
.hero-container {
    background: linear-gradient(#97004c56, #03000288),
        url("/assets/images/barangay_hall.jpg");
    height: 70vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
}

.hero-text a {
    text-decoration: none;
    border-radius: 150px;
    border: 2px solid white;
    background-color: white;
    color: var(--main-font-color);
    transition: 500ms ease-in-out;
}

.hero-text a:hover {
    color: white;
    background-color: var(--main-font-color);
    border: 2px solid white;
}

/*=========> ABOUT CONTAINER STYLING */

.about-container {
    padding: 10rem 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-container h1 {
    color: var(--main-font-color);
    position: relative;
    width: 100%;
}
.about-container h1::before {
    content: "";
    width: 90%;
    height: 3px;
    background-color: var(--main-font-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}
.about-container h1::after {
    content: "";
    width: 45%;
    height: 3px;
    background-color: #fc76ba;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.about-container a {
    text-decoration: none;
    color: var(--main-font-color);
    border: 2px var(--main-font-color) solid;
    padding: 0.6rem 1.25rem;
    transition: 500ms ease-in-out;
}

.about-container .lead {
    color: #000000;
    font-weight: 400;
}

.about-container .mt-5 a:hover {
    transition: 500ms ease-in-out;
}

.about-container .mt-5 a:hover {
    background: var(--main-font-color);
    color: white;
}
.history-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.history-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.history-image {
    flex-basis: 40%;
    width: 100%;
    height: 400px; /* Ensures uniform image height */
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.history-content {
    flex-basis: 55%;
    text-align: justify;
    text-indent: 50px;
    line-height: 1.8rem;
    margin-top: 2rem;
}

.history-row.reverse {
    flex-direction: row-reverse;
}

/* Full-width text block */
.history-full-text {
    text-align: justify;
    text-indent: 50px;
    line-height: 1.8rem;
    margin-top: 2rem;
}

/* Style for the container */
.container-geo {
    max-width: 1200px;
    margin: 5rem auto !important;
    padding: 20px;
    color: var(--main-font-color);
}

/* CSS Grid for geodata */
.geodata-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: center;
}

/* Styling for the text section */
.text-section h4 {
    color: #2c3e50;
    font-size: 18px;
}

.text-section .lead {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
}

/* Image container to ensure responsiveness */
.map-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Spacing for the headings */
.container-geo h3,
h4 {
    text-transform: uppercase;
    font-family: "Arial", sans-serif;
}

.official-container {
    margin-top: 9rem;
    margin-bottom: 3rem;
    color: var(--main-font-color);
}

.official-container .card img {
    width: 150px;
}

.official-container .row .col-lg-4 {
    margin-top: 2rem;
}
.official-container .row .col-lg-4 .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.official-container .row .col-lg-4 .card .card-body {
    color: var(--main-font-color);
    text-align: center;
}
.official-container .row .col-lg-4 .card .card-body p {
    font-weight: bold;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.official-container .row .col-lg-4 .card .card-body span {
    font-style: italic;
}

.staff-container {
    margin-bottom: 6rem;
    color: var(--main-font-color);
}

.staff-container .card img {
    width: 150px;
}

.staff-container .row .col-lg-4 {
    margin-top: 2rem;
}
.staff-container .row .col-lg-4 .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.staff-container .row .col-lg-4 .card .card-body {
    color: var(--main-font-color);
    text-align: center;
}
.staff-container .row .col-lg-4 .card .card-body p {
    font-weight: bold;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.staff-container .row .col-lg-4 .card .card-body span {
    font-style: italic;
}

/*=========> DEMOGRAPHIC CONTAINER STYLING */

.demographic-container {
    background: linear-gradient(#97004c56, #03000288),
        url("/assets/images/13_martyrs_bantayog.jpg");
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.demographic-container .row {
    height: 100vh;
}

.demographic-container .row .col-lg-3 {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 3rem 2rem;
}

.demographic-container .row .col-lg-3 .demo-text {
    display: flex;
    flex-direction: column;
    color: var(--main-font-color);
}

/*=========> SERVICES CONTAINER STYLING */

.services-container {
    padding: 10rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services-container h1 {
    color: var(--main-font-color);
    position: relative;
    width: 100%;
}
.services-container h1::before {
    content: "";
    width: 90%;
    height: 3px;
    background-color: var(--main-font-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}
.services-container h1::after {
    content: "";
    width: 45%;
    height: 3px;
    background-color: #fc76ba;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.services-container .row .col-lg-4 {
    flex: 1;
}

.request_btn {
    color: white;
    background-color: var(--main-font-color);
    border-radius: 150px;
    text-decoration: none;
    padding: 0.8rem 1.25rem;
}
.styled-ol {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.styled-ol li {
    counter-increment: list-counter;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.styled-ol li::before {
    content: counter(list-counter);
    background-color: var(--main-font-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

.services-container .see-more {
    text-decoration: none;
    color: var(--main-font-color);
    border: 2px var(--main-font-color) solid;
    padding: 0.6rem 1.25rem;
    transition: 500ms ease-in-out;
}

.home-services-container .lead {
    color: #000000;
    font-weight: 400;
}
.home-services-container-row .lead {
    color: var(--main-font-color);
    font-weight: 400;
}
.services-container .row .mt-5 {
    margin-top: 7rem !important;
}

.services-container .row .mt-5 .see-more:hover {
    transition: 500ms ease-in-out;
}

.services-container .row .mt-5 .see-more:hover {
    background: var(--main-font-color);
    color: white;
}

.services-container-page {
    padding: 5rem 0;
}

/*=========> ANNOUNCEMENT CONTAINER STYLING */
.announcement-container {
    padding: 10rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.announcement-container h1 {
    color: var(--main-font-color);
    position: relative;
    width: 100%;
}
.announcement-container h1::before {
    content: "";
    width: 90%;
    height: 3px;
    background-color: var(--main-font-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}
.announcement-container h1::after {
    content: "";
    width: 45%;
    height: 3px;
    background-color: #fc76ba;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}
.announcement-container .lead {
    color: #000000;
    font-weight: 400;
}

.announcement-container .row .col-lg-4 {
    flex: 1;
    color: var(--main-font-color);
}

.announcement-container .see-more {
    text-decoration: none;
    color: var(--main-font-color);
    border: 2px var(--main-font-color) solid;
    padding: 0.6rem 1.25rem;
    transition: 500ms ease-in-out;
}

.announcement-container .row .mt-5 {
    margin-top: 7rem !important;
}

.announcement-container .row .mt-5 .see-more:hover {
    transition: 500ms ease-in-out;
}

.announcement-container .row .mt-5 .see-more:hover {
    background: var(--main-font-color);
    color: white;
}

.announcement-details-container {
    padding-bottom: 5rem;
}

/*=========> CONTACT CONTAINER STYLING */

.contact-container {
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-container h1 {
    color: var(--main-font-color);
    position: relative;
    width: 100%;
}

.contact-container h1::before {
    content: "";
    width: 90%;
    height: 3px;
    background-color: var(--main-font-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.contact-container h1::after {
    content: "";
    width: 45%;
    height: 3px;
    background-color: #fc76ba;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.contact-container .lead {
    color: #000000;
    font-weight: 400;
}
.contact-container .row .col-lg-6 {
    flex: 1;
    color: var(--main-font-color);
}

/*=========> FAQS STYLING */

.faq-section {
    background-color: var(--main-font-color);
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.faq-section .accordion {
    border: none !important;
}

.faq-section .accordion-item,
.faq-section .accordion-button {
    background-color: var(--main-font-color);
    color: white;
    border: none;
    outline: none !important;
    /* border-top: 1px solid white; */
    font-size: 1.3rem;
}

.faq-section .accordion-body {
    font-size: 1rem;
}
.faq-section .accordion-header {
    border: none;
    outline: none;
}

.faq-section .accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.faqs-container {
    padding: 10rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faqs-container h1 {
    color: var(--main-font-color);
    position: relative;
    width: 100%;
}
.faqs-container h1::before {
    content: "";
    width: 25%;
    height: 3px;
    background-color: var(--main-font-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}
.faqs-container h1::after {
    content: "";
    width: 10%;
    height: 3px;
    background-color: #fc76ba;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}
.faqs-container .lead {
    color: #000000;
    font-weight: 400;
}

.faqs-container .row .col-lg-4 {
    flex: 1;
    color: var(--main-font-color);
}

.faqs-container .see-more {
    text-decoration: none;
    color: var(--main-font-color);
    border: 2px var(--main-font-color) solid;
    padding: 0.6rem 1.25rem;
    transition: 500ms ease-in-out;
}

/*=========> FOOTER STYLING */
footer {
    background-color: var(--main-font-color);
}
.footer-inner {
    display: flex;
    justify-content: space-around;
}
.custom-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.custom-list li {
    position: relative;
    margin-bottom: 10px; /* Adjust spacing between items */
    padding-left: 40px; /* Make space for custom bullet */
}

.custom-list li::before {
    content: "";
    background-image: url("/assets/images/footer-bullet.png"); /* Path to your image */
    background-size: cover; /* Ensures the image covers the circle */
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    border-radius: 50%; /* Makes the background circular */
    display: inline-block;
    position: absolute;
    left: 0; /* Position image on the left side */
    top: 50%; /* Vertically center */
    transform: translateY(-50%); /* Adjust vertical alignment */
}

hr.custom-hr {
    width: 100%; /* Make the <hr> span the full width of its container */
    border: none; /* Remove default border */
    height: 2px; /* Set the thickness of the line */
    background-color: white; /* Set the background color of the line */
}

.icons i {
    font-size: 1.5rem;
    color: #54e346; /* Set icon color here */
}

.icons a {
    text-decoration: none; /* Remove underline from links */
}

/*=========> LOGIN PAGE STYLING */

#login {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0;
}

#imgbox {
    position: relative;
    width: 50%;
    height: 100%;
}

#imgbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#97004c56, #03000288);
    z-index: 200;
}

#imgbox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contentBox {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

#loginForm {
    padding: 8rem !important;
}

.homeBtnTwo {
    display: none;
}

.homeBtnTwo i {
    transition: 500ms ease;
}

.homeBtnTwo i:hover {
    color: var(--main-font-color);
}

.swal-footer {
    text-align: center;
}

#hide,
#toggleOldPassword,
#toggleNewPassword,
#toggleConfirmNewPassword,
#togglePassword,
#toggleConfirmPassword {
    cursor: pointer;
}

#hide:hover,
#toggleOldPassword:hover,
#toggleNewPassword:hover,
#toggleConfirmNewPassword:hover,
#togglePassword:hover,
#toggleConfirmPassword:hover {
    background-color: var(--main-font-color);
    color: white;
}

.form-floating-group input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.loader {
    background: #000000 url("/assets/images/loading.gif") no-repeat center
        center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 350;
}

/*=========> PRE-REGISTRATION PAGE STYLING */

.procedures-container {
    padding: 4rem 0;
}

.procedures-content .lead {
    color: #000000;
}

.procedures-content ol li {
    margin-top: 0.5rem;
}

.procedures-content .proceed_btn,
#signup .proceed_btn {
    color: white;
    background-color: var(--main-font-color);
    border-radius: 150px;
    text-decoration: none;
    padding: 0.8rem 5rem;
    border: none;
}

.procedures-content .cancel_btn {
    border-radius: 150px;
    text-decoration: none;
    padding: 0.8rem 5rem;
    text-decoration: none;
    color: var(--main-font-color);
    border: 2px solid var(--main-font-color);
}

.cross-icon {
    color: red;
    font-weight: bold;
    margin-right: 0.5rem;
}

.no-selfie-rules {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.no-selfie-rules li {
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}

/*=========> SIGNUP PAGE STYLING */
#signup {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#signup img {
    width: 70px;
}

#signup h1 {
    color: var(--main-font-color);
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

#signup h1::before {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--main-font-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

#signup h1::after {
    content: "";
    width: 45%;
    height: 3px;
    background-color: #fc76ba;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.signup-container .col-lg-4 {
    color: var(--main-font-color);
    margin-top: 2rem;
}

.signup-container .form-field {
    margin-left: 1rem;
    margin-top: 0.8rem;
}

.custom-border-bottom {
    padding: 0;
    border: none; /* Remove all borders */
    border-bottom: 2px solid rgba(0, 0, 0, 0.2); /* Adjust the color and width as needed */
    border-radius: 0; /* Remove border-radius to keep the bottom border only */
}

.custom-border-bottom:focus {
    border-bottom: 2px solid rgba(0, 0, 0, 0.2); /* Keep the same bottom border on focus */
    box-shadow: none; /* Remove the default focus shadow */
}

.invalid-feedback {
    position: absolute;
    right: 10px;
    top: 5%;
    transform: translateY(-5%);
    z-index: 1;
    pointer-events: none;
    color: red; /* Optional: Set the color to red or any other color */
}

.is-invalid {
    border-color: red; /* Change the border color to red when invalid */
}

.form-field {
    position: relative;
    z-index: 2; /* Ensure the input field is above the invalid-feedback */
}

/*----------- RESIDENT PAGE STYLING ------------*/
.resident-container {
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: fixed; /* Fixed position relative to the viewport */
    top: 0; /* Position at the top */
    left: 0; /* Position at the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Black background with 50% opacity */
    z-index: 500; /* Same z-index as Bootstrap modals */
    display: none; /* Initially hidden */
}

.sidebar {
    position: relative;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    padding: 24px;
    transition: all 0.3s;
}

.sidebar .sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar .head {
    display: flex;
    gap: 20px;

    border-bottom: 1px solid #f6f6f6;
}
.user-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex; /* Center the image */
    align-items: center; /* Center the image */
    justify-content: center; /* Center the image */
    border-radius: 50%; /* Keep the circular shape */
}

.user-img img {
    width: 100%; /* Maintain aspect ratio */
    height: 100%; /* Fill the height */
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 50%; /* Keep the circular shape */
}

.user-details .title,
.menu .title {
    font-size: 10px;
    font-weight: 500;
    color: #757575;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.user-details .name {
    font-size: 14px;
    font-weight: 500;
}
.navigation {
    flex: 1;
}
.menu ul li {
    position: relative;
    list-style: none;
    margin-bottom: 5px;
    z-index: 400;
}
.menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #757575;
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.3s;
}
.menu ul li > a:hover,
.menu ul li.active > a {
    color: #ffffff;
    background-color: var(--main-font-color);
}
.menu ul li .icon {
    font-size: 20px;
}
.menu ul li .text {
    flex: 1;
}
.menu ul li .arrow {
    font-size: 14px;
    transition: all 0.3s;
}
.menu ul li.active .arrow {
    transform: rotate(180deg);
}
.menu .sub-menu {
    display: none;
    margin-left: 20px;
    padding-left: 20px;
    padding-top: 5px;
    border-left: 1px solid #f6f6f6;
}
.menu .sub-menu li a {
    padding: 10px 8px;
    font-size: 12px;
}
.menu:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f6f6f6;
}
.menu-btn {
    position: absolute;
    right: -14px;
    top: 3.5%;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #757575;
    border: 2px solid #f6f6f6;
    background-color: #fff;
    z-index: 700;
}
.menu-btn:hover i {
    color: #000;
}
.menu-btn i {
    transition: all 0.3s;
}

.sidebar.active .sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
    height: auto; /* Reset to default height */
    width: auto; /* Reset to default width */
    overflow-y: visible; /* Ensures content is visible, without scroll */
    scrollbar-width: auto; /* Show scrollbar if needed */
}
.sidebar.active {
    width: 95px;
}

.sidebar.active .head {
    display: none;
}

.sidebar.active .menu-btn i {
    transform: rotate(180deg);
}
.sidebar.active .user-details {
    display: none;
}
.sidebar.active .menu .title {
    text-align: center;
}
.sidebar.active .menu ul li .arrow {
    display: none;
}
.sidebar.active .menu > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar.active .menu > ul > li > a .text {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sidebar.active .menu > ul > li > a .text::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 20%;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background-color: #000;
    transform: rotate(45deg);
    z-index: -1;
}
.sidebar.active .menu > ul > li > a:hover .text {
    left: 50px;
    opacity: 1;
    visibility: visible;
}
.sidebar.active .menu .sub-menu {
    position: absolute;
    top: 0;
    left: 20px;
    width: 200px;
    border-radius: 20px;
    padding: 10px 20px;
    border: 1px solid #f6f6f6;
    background-color: #fff;
    box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.1);
}

.barangay-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-font-color);
    z-index: 600;
}
.sidebar.active .barangay-logo {
    display: block !important;
    background-color: transparent;
}

.sidebar.active .barangay-logo img {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f6f6f6;
}
.sidebar.active .barangay-logo div {
    display: none !important;
}

/* Style for the third-level submenu (sub-submenu) */

.sub-submenu {
    display: none;
    margin-left: 20px;
    padding-left: 20px;
    padding-top: 5px;
    border-left: 1px solid #f6f6f6;
}

.sub-menu li .arrow-sub {
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.sub-menu li.active .arrow-sub {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

.sub-submenu li a {
    padding: 8px 8px;
    font-size: 12px;
}

.topbar {
    height: 3.2rem;
    width: 100%;
}

.topbar .profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--main-font-color);
}

.topbar .profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.dashboard {
    height: calc(630px - 50px);
    overflow-y: scroll;
    scrollbar-width: none;
    padding-bottom: 5rem;
}

.dashboard .row .col-lg-4 {
    flex: 1;
}

.my-profile {
    height: 100%;
    overflow: hidden;
}
.my-profile .container {
    max-height: 100vh;
    overflow-y: auto;
}

.my-profile .row .profile-picture img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.changePhotoContainer {
    position: absolute;
    top: 0;
    left: -200%;
    display: none;
    z-index: -2;
}

#dropdownMenuResident,
#dropdownMenuAdmin {
    top: 80% !important;
    right: 10% !important;
}

.navbarContainer .mobile-nav {
    display: none !important;
}

.pop-up {
    display: none;
}

.dt-layout-row label {
    margin-left: 0.5rem;
}

#request_form .dt-empty {
    text-align: center;
}

/* General table styling */
#request_form,
#latest_transaction {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

#request_form th,
#request_form td,
#latest_transaction th,
#latest_transaction td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
}

#request_form th {
    background-color: #0e49b5;
    color: #ffffff;
}

/* Hover effect for table rows */
#request_form tr:hover {
    background-color: #f1f1f1;
}

/* Styling for the View button */
#request_form a {
    display: inline-block;
    padding: 8px 12px;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* Alternating row colors */
#request_form tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.breadcrumb li:nth-child(1) {
    padding-left: 1.25rem;
}

.breadcrumb li a {
    text-decoration: none;
    color: #000000;
}

.breadcrumb li a:hover {
    color: #007bff;
}

.bottombar ul li {
    display: inline !important;
    list-style-type: none;
    margin-left: 1.5rem;
}

.bottombar ul li a {
    color: #000000;
    text-decoration: none;
}

/* styles.css */

/* Basic styles for the bottombar */
.bottombar {
    position: relative;
}

.bottombar .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.bottombar .menu > li {
    position: relative;
}

.bottombar .menu > li > a {
    text-decoration: none;
    color: #000;
    padding: 10px;
}

.bottombar .sub-link {
    display: none;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 200px;
    height: 150px;
}

.bottombar .sub-link li {
    margin: 0;
    position: relative; /* Positioning context for the <a> tag */
    width: 100%;
    height: 100%;
}

.bottombar .sub-link li a {
    display: flex; /* Makes <a> a block-level element */
    width: 100%; /* Takes up the full width of <li> */
    height: 100%; /* Takes up the full height of <li> */
    padding: 10px; /* Add padding inside the <a> tag if needed */
    box-sizing: border-box; /* Ensures padding is included in width/height */
    color: #333; /* Text color */
    text-decoration: none; /* Removes underline */
    align-self: center;
}

.bottombar .sub-link li:hover a {
    background-color: var(--main-font-color); /* Background color on hover */
}

.bottombar .sub-link li a:hover {
    background-color: var(--main-font-color);
}

/* Show dropdown on hover */
.dropdown:hover .sub-link {
    display: flex;
}

.mobile-responsive-menu {
    display: none;
}

.carousel .carousel-item {
    height: 450px;
    padding: 2rem;
}

.carousel-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 300px;
    width: 500px !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: var(--main-font-color);
}

.swiper {
    height: 500px;
}

.help-sidebar ul li {
    list-style-type: none;
    margin-top: 1rem;
}

.help-sidebar ul li a {
    text-decoration: none;
    color: #000;
}

.help-sidebar {
    width: 350px;
    padding: 2rem;
}

.help-sidebar a {
    text-decoration: none;
    color: var(--main-font-color);
}

.help-sidebar .help-category {
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.help-sidebar .help-category:hover {
    color: #ffffff !important;
    background-color: var(--main-font-color);
}

.help-container {
    display: flex;
}

.help-container .help-content {
    flex: 1;
}

.help-content {
    overflow-y: auto;
}

.image-container .image {
    height: 250px;
    width: 350px;
    border: 5px solid #000;
    overflow: scroll !important;
    cursor: pointer;
}

/*---- POP UP IMAGE -----*/
.popup-image {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: none;
    overflow: auto;
}

.popup-image span {
    position: absolute;
    top: 0;
    right: 10px;
    font-weight: bolder;
    color: #ffffff;
    cursor: pointer;
    font-size: 40px;
}

.popup-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #ffffff;
    border-radius: 5px;
    width: 750px;
    height: max-content;
    object-fit: cover;
    margin-top: 2rem;
}

.view-btn {
    padding: 6px 12px !important;
    border: none;
}

#help-responsive-navbar {
    display: none;
}

.dashboard .dt-length,
.dashboard .dt-search,
.dashboard .dt-layout-row #latest_transaction_info,
.dashboard .dt-layout-row .dt-layout-end .dt-paging nav {
    display: none;
}

/*----------- ADMIN PAGE STYLING ------------*/

.admin-container {
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
}

.createUserForm .col-lg-12 .col-lg-6 {
    flex: 1;
}

.createUserForm .col-lg-12 .col-lg-4 {
    flex: 1;
}

.img-cont-profile {
    width: 140px;
    height: 140px;
}
.img-cont-profile img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.create-active-resident {
    height: calc(600px - 50px);
    overflow-y: scroll;
    scrollbar-width: none;
    padding-bottom: 15rem;
}

.create-active-resident .proceed_btn {
    color: white;
    background-color: var(--main-font-color);
    border-radius: 150px;
    text-decoration: none;
    padding: 0.8rem 5rem;
    border: none;
}

.viewActiveResidentModal .nav .nav-link {
    color: black !important;
}

.viewActiveResidentModal .nav .active {
    color: #ffffff !important;
    background: var(--main-font-color);
}

.id-pics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
    gap: 1rem;
}

.id-pic-item {
    height: 250px;
    /* Fixed height for each grid item */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 0.5rem;
}

.id-pic-item img {
    height: 100%;
    /* Makes the image fill the height of the container */
    width: 100%;
    /* Makes the image fill the width of the container */
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
}
.validate-resident-inner {
    height: calc(500px - 50px);
    overflow-y: auto;
    scrollbar-width: none;
    padding-inline: 1rem;
}

.validate-resident .row {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
}

.validate-resident .row > div {
    display: flex;
    flex-direction: column;
}

.validate-resident .row div:nth-child(4) .card-body .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.validate-resident .row div:nth-child(4) .grid-item {
    display: flex;
    flex-direction: column;
}

.validate-resident .row div:nth-child(4) .grid-item-full {
    grid-column: span 2;
}

.validate-resident .row div:nth-child(4) .id-pics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.validate-resident .row div:nth-child(4) .id-pic-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-main-container {
    height: calc(600px - 50px);
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 10rem;
}

.disclosure-main-container {
    height: calc(600px - 50px);
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 10rem;
}
.announcement-item .date-sm {
    display: none !important;
}

#registerNewOfficialForm .photo-container {
    width: 140px;
    height: 140px;
}

#registerNewOfficialForm .photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#viewOfficialsForm .photo-container {
    width: 140px;
    height: 140px;
}

#viewOfficialsForm .photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#registerNewStaffForm .photo-container {
    width: 140px;
    height: 140px;
}

#registerNewStaffForm .photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#viewStaffForm .photo-container {
    width: 140px;
    height: 140px;
}

#viewStaffForm .photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#registerNewSkForm .photo-container {
    width: 140px;
    height: 140px;
}

#registerNewSkForm .photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#viewSkForm .photo-container {
    width: 140px;
    height: 140px;
}

#viewSkForm .photo-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.other-staff .custom-tabs .nav-link {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
}

.other-staff .custom-tabs .nav-link.active {
    color: #bb005d;
    background-color: #fff;
    border-color: #ddd #ddd #fff;
}

.other-staff .tab-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    padding: 1rem;
    padding-left: 3rem;
}

.other-staff .tab-content h4 {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #bb005d;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.other-staff .staff-list {
    margin: 0;
    padding: 0;
    list-style-type: decimal;
}

.other-staff .staff-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.other-staff .staff-list li strong {
    color: #333;
}

#complaintType option:nth-last-child() {
    font-weight: bold;
}

#fileNewComplaintForm {
    height: calc(550px - 50px);
    overflow-y: auto;
    scrollbar-width: none;
}

.request-form form .header-file-complaint {
    text-align: center;
}

.reviewPendingComplaintContainer {
    height: calc(600px - 50px);
    overflow-y: scroll;
    scrollbar-width: none;
}

.reviewPendingRequestContainer {
    height: calc(600px - 50px);
    overflow-y: scroll;
    scrollbar-width: none;
}

#evidenceReview {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(300px, 1fr)
    ); /* Adjust column width */
    gap: 10px; /* Space between items */
}

.evidence-item {
    border: 1px solid #ddd; /* Border around each item */
    border-radius: 4px; /* Rounded corners */
    overflow: hidden; /* Hide overflow for rounded corners */
}

.evidence-item img,
.evidence-item video {
    width: 100%; /* Make image/video fill the container */
    height: auto; /* Maintain aspect ratio */
}
.admin-review-pending-complaint .popup-image {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.admin-review-pending-complaint .popup-image img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.admin-review-pending-complaint .popup-image span {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.disclosure-container .col-lg-12 {
    margin-top: 1rem;
}

.disclosure-container .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    border-radius: 50%;
    background-color: #e9ecef; /* Light background for contrast */
    color: #6c757d; /* Default icon color */
    font-size: 24px; /* Adjust icon size */
}

.disclosure-container .file-icon {
    line-height: 1; /* Ensure proper alignment */
}

.disclosure-container .file-title {
    font-size: 1.25rem; /* Adjust title size */
    font-weight: bold;
    color: #343a40; /* Dark text color */
}

.disclosure-container .file-description {
    font-size: 0.875rem; /* Adjust description size */
    color: #6c757d; /* Secondary text color */
}

.disclosure-container .file-size {
    font-size: 0.875rem; /* Adjust file size text size */
    color: #495057; /* Text color */
    margin-right: 0.8rem;
}

.disclosure-container .file-category {
    font-size: 0.75rem; /* Adjust category badge size */
    text-transform: capitalize; /* Capitalize first letter */
}

.disclosure-container .btn-link {
    color: #007bff; /* Bootstrap link color */
}

.custom-radio {
    display: inline-block;
    padding: 5px;
    border: 1px solid #000; /* Border color */
    border-radius: 50%; /* Optional: Makes it circular */
    color: #b20f22b9;
}

.custom-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.custom-radio input[type="radio"]:checked + label {
    background-color: #000; /* Background when checked */
    color: #fff; /* Text color when checked */
}

.custom-radio label {
    display: inline-block;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%; /* Matches the container */
    text-align: center;
}

@media (max-width: 768px) {
    .custom-tabs .nav-link {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }

    .tab-content h4 {
        font-size: 1.25rem;
    }

    .admin-review-pending-complaint .resident-info-complaint {
        padding: 0;
    }
}

.confirmButton .swal-button--confirm {
    background-color: #198754 !important;
}

.photo-section {
    text-align: left;
    margin-top: 1rem;
}

.photo-section .label {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, auto); /* Two columns with auto width */
    gap: 1rem; /* Space between images */
    justify-content: start; /* Align the grid to the left */
}

.image-grid img {
    width: 200px; /* Smaller width for the images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.photo-section .disclaimer {
    font-size: 0.85rem;
    color: #6c757d; /* Subtle gray text */
    margin-top: 0.5rem;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr; /* One column layout for smaller screens */
    }

    .image-grid img {
        width: 100%; /* Make images take full width */
    }

    .photo-section .label {
        font-size: 0.9rem; /* Slightly smaller font size for mobile */
    }

    .photo-section .disclaimer {
        font-size: 0.8rem; /* Smaller disclaimer text on mobile */
    }
}


