html {
    scroll-behavior: smooth;
}

body{
    padding-top: 76px;
}

/* Remove padding when login page elements are present */
body:has(.login-wrapper) {
    padding-top: 0;
}

/* ============================================
   CAROUSEL LOADING SKELETON
   ============================================ */

/* Skeleton Loader Container */
.carousel-skeleton-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
}

/* Skeleton Shimmer Effect */
.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Shimmer Wave Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Loading Text/Icon in Center */
.carousel-skeleton-loader::before {
    content: '🌲';
    font-size: 4rem;
    color: #1b5e20;
    opacity: 0.8;
    animation: pulse 1.5s ease-in-out infinite;
    z-index: 10;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15) translateY(-5px);
        opacity: 1;
    }
}

/* ============================================
   CAROUSEL ANIMATIONS - Active & Responsive
   ============================================ */

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out !important;
    display: block !important;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transition: opacity 1.2s ease-in-out !important;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 0;
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    z-index: 0;
    opacity: 0;
    transform: none !important;
}

/* Carousel Item Animation - Removed in favor of fade */
.carousel-item-animate {
    animation: none !important;
}

.carousel-item-animate.active {
    animation: none !important;
}

@keyframes slideZoom {
    0% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1);
    }
}

/* Enhanced Carousel Indicators */
.carousel-indicators {
    display: none !important;
    bottom: 20px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.carousel-indicators button.active,
.carousel-indicator-active {
    width: 14px;
    height: 14px;
    background-color: #1b5e20 !important;
    border-color: #2e7d32 !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.3);
    animation: indicatorPulse 0.6s ease-out;
}

.carousel-indicators button:not(.active):hover,
.carousel-indicator-inactive:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

@keyframes indicatorPulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 6px rgba(46, 125, 50, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.3);
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 125, 50, 0.2);
    border-radius: 8px;
    display: none !important;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0;
    background: rgba(46, 125, 50, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ============================================ */


*::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
}

*::-webkit-scrollbar-track {
    background: #eee;        /* color of the tracking area */
}

*::-webkit-scrollbar-thumb {
    background-color: #4caf50;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    /* border: 3px solid orange;  creates padding around scroll thumb */
}
/*--------------all tags are start here -------*/

a {
    text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #1b5e20;
}


/*--------------all tags are End here -------*/


/*---------predefine tag decision class for paragraph-----------*/

.decision {
    color: #4caf50;
}

.btn-primary-forest {
    background: #1b5e20;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 20px;
    box-shadow: 1px 2px 0px rgb(0 0 0 / 20%);
    transition: all 0.3s ease-in-out;
}
.smBtn{
    font-size: 10px;letter-spacing: 0.5px;
}
.btn-primary-forest:hover{
    box-shadow: 3px 3px 2px rgb(0 0 0 / 20%);
    background: #144617;
    color: #65d069;
}




/*---------predefine tag decision class for paragraph-----------*/


/*---------------------code for home page ----------------------*/

.overview{
    position: absolute;
    z-index: 1;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview h1{
    color: #4caf50;
}
.overview div{
    background:rgb(0 0 0 /70%);
    padding: 15px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.438);
    color: #fff;
    font-size: 16px;
    max-width: 80%;
    max-height: 80vh;
}
.login p strong{
    font-size: 30px !important;
    text-align: center;
    margin:auto;
    display: table;
    color: #28a745 !important;
}

.login .overview div{
    width: 33%;
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 0px;
}

/* Remove body padding for login page */
body.login {
    padding-top: 0 !important;
}

/* ============================================
   PROFESSIONAL LOGIN PAGE STYLING
   ============================================ */

#carouselExampleInterval {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3a1a 0%, #1b5e20 50%, #0d3a1a 100%);
}

#carouselExampleInterval.images-loaded {
    background: linear-gradient(135deg, #0d3a1a 0%, #1b5e20 50%, #0d3a1a 100%);
}

#carouselExampleInterval .carousel-inner {
    height: 100%;
}

#carouselExampleInterval .carousel-item {
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    position: relative;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block !important;
    z-index: 0;
}

#carouselExampleInterval .carousel-item.active {
    display: block !important;
    opacity: 1;
    z-index: 1;
    animation: zoomInSlightly 15s ease-out;
}

@keyframes zoomInSlightly {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

#carouselExampleInterval .carousel-item-next.carousel-item-start,
#carouselExampleInterval .carousel-item-prev.carousel-item-end {
    animation: none;
}

#carouselExampleInterval .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(13, 61, 26, 0.45) 100%);
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 1;
}

#carouselExampleInterval .carousel-item:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(13, 61, 26, 0.35) 100%);
}

/* Carousel controls styling */
#carouselExampleInterval .carousel-control-prev,
#carouselExampleInterval .carousel-control-next {
    z-index: 5;
    width: 65px;
    height: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.4), rgba(43, 160, 71, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.65;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

#carouselExampleInterval .carousel-control-prev {
    left: 25px;
}

#carouselExampleInterval .carousel-control-next {
    right: 25px;
}

#carouselExampleInterval .carousel-control-prev:hover,
#carouselExampleInterval .carousel-control-next:hover {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9), rgba(43, 160, 71, 0.8));
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    box-shadow: 0 0 35px rgba(67, 160, 71, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.2);
}

#carouselExampleInterval .carousel-control-prev-icon,
#carouselExampleInterval .carousel-control-next-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-size: contain;
}

#carouselExampleInterval .carousel-control-prev:hover .carousel-control-prev-icon,
#carouselExampleInterval .carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.35);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1));
}

/* Carousel indicators */
#carouselExampleInterval .carousel-indicators {
    bottom: 35px;
    z-index: 4;
    gap: 12px;
}

#carouselExampleInterval .carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.35);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#carouselExampleInterval .carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
}

#carouselExampleInterval .carousel-indicators .active {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(67, 160, 71, 0.9), 0 0 0 5px rgba(255, 255, 255, 0.4);
    width: 16px;
    height: 16px;
    opacity: 1;
    transform: scale(1.4);
}

/* Login Wrapper - Centers everything */
.login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    background: linear-gradient(135deg, rgba(13, 61, 26, 0.05), rgba(27, 94, 32, 0.05));
    padding: 20px 0;
    overflow-y: auto;
}

/* Login Box - Main container */
.login-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 248, 245, 0.98) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(27, 94, 32, 0.1);
    padding: 45px 40px 40px 40px;
    width: 100%;
    max-width: 530px;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 6px solid;
    border-image: linear-gradient(90deg, #1b5e20, #2e7d32, #43a047) 1;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 35px;
    animation: slideInDown 0.8s ease-out;
    position: relative;
    padding-bottom: 20px;
}

.login-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2e7d32, transparent);
    border-radius: 2px;
}

.login-logo {
    max-width: 85px;
    height: auto;
    margin-bottom: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(27, 94, 32, 0.2));
}

.login-logo:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 8px 16px rgba(27, 94, 32, 0.35));
}

.login-title {
    font-size: 32px;
    background: linear-gradient(135deg, #0d3a1a 0%, #1b5e20 50%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.8px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    text-shadow: 0 2px 4px rgba(27, 94, 32, 0.1);
}

/* Form Groups */
.login-form-group {
    margin-bottom: 22px;
    animation: slideInUp 0.8s ease-out backwards;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 15px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(240, 248, 245, 0.5), rgba(245, 252, 250, 0.8));
    border: 1px solid rgba(27, 94, 32, 0.08);
}

.login-form-group:nth-child(1) {
    animation-delay: 0.4s;
}

.login-form-group:nth-child(2) {
    animation-delay: 0.5s;
}

.login-form-group:hover {
    transform: translateX(5px);
    background: linear-gradient(180deg, rgba(240, 248, 245, 0.7), rgba(245, 252, 250, 1));
    border-color: rgba(27, 94, 32, 0.15);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.08);
}

.login-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0d3a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.login-label i {
    margin-right: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    color: #2e7d32;
}

.login-form-group:hover .login-label {
    color: #1b5e20;
}

.login-form-group:hover .login-label i {
    transform: scale(1.25) rotate(-15deg);
    color: #43a047;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

/* Password Toggle Button */
.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2e7d32;
    font-size: 1.2rem;
    padding: 10px 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover {
    color: #1b5e20;
    transform: scale(1.25);
}

.password-toggle:focus {
    outline: none;
}

.password-toggle i {
    transition: all 0.3s ease;
    display: inline-block;
}

.password-toggle.visible i::before {
    content: '\f06e';
}

.password-toggle:not(.visible) i::before {
    content: '\f070';
}

.login-field {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #d0d7de;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    animation: slideInField 0.6s ease-out backwards;
    position: relative;
}

.login-field::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #1b5e20, #2e7d32, #43a047);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.login-field:hover {
    border-color: #2e7d32;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f5 100%);
    box-shadow: 0 6px 16px rgba(27, 94, 32, 0.12), inset 0 0 0 1px rgba(27, 94, 32, 0.05);
}

.login-field:focus {
    outline: none;
    border-color: #1b5e20;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f5 100%);
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.15), 0 8px 20px rgba(27, 94, 32, 0.18);
    transform: translateY(-2px);
}

.login-field:focus::before {
    width: 100%;
}

.login-field::placeholder {
    color: #999;
    opacity: 0.8;
}

/* Field Error Messages */
.field-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    animation: shake 0.5s ease-in-out;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 15px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4), 0 0 20px rgba(67, 160, 71, 0.2);
    animation: slideInUp 0.8s ease-out 0.6s backwards;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.login-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover::after {
    opacity: 1;
}

.login-btn:hover {
    background-position: right center;
    background: linear-gradient(135deg, #0d3a1a 0%, #1b5e20 50%, #2e7d32 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(27, 94, 32, 0.5), 0 0 30px rgba(67, 160, 71, 0.3), inset 0 0 20px rgba(255,255,255,0.15);
    letter-spacing: 2px;
}

.login-btn:active {
    transform: translateY(-1px) scale(0.97);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.35);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

/* Ripple Effect */
.login-btn {
    position: relative;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(255,255,255,0));
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 10px;
    margin-bottom: 22px;
    padding: 14px 18px;
    font-size: 14px;
    animation: slideInDown 0.5s ease-out;
    border-left: 4px solid #dc3545;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(248, 215, 218, 0.9), rgba(245, 198, 203, 0.95));
    color: #5a1a1f;
    border-left: 4px solid #dc3545;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2);
}

.alert-danger strong {
    color: #721c24;
    font-weight: 700;
}

.alert-danger p {
    margin: 8px 0 0 0;
    font-weight: 500;
}

.btn-close {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Slide Zoom Animation for Carousel */
@keyframes slideZoom {
    from {
        transform: scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.02);
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ripple Effect Animation */
@keyframes rippleEffect {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Slide Zoom In Animation for transitions */
@keyframes slideZoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
        filter: blur(3px);
    }
    to {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

/* Fade Cross Animation */
@keyframes fadeCross {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide In Up Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Title */
@keyframes pulse {
    0% {
        text-shadow: 0 0 0 0 rgba(27, 94, 32, 0.7);
    }
    70% {
        text-shadow: 0 0 0 8px rgba(27, 94, 32, 0);
    }
    100% {
        text-shadow: 0 0 0 0 rgba(27, 94, 32, 0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Slide In Up Animation */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In Down Animation */
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Field Animation */
@keyframes slideInField {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel {
        height: 100vh;
        overflow: hidden;
    }
    
    .carousel-inner {
        height: 100%;
    }
    
    .carousel-item {
        height: 100%;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .login-box {
        max-width: 85%;
        padding: 30px 20px 25px 20px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .login-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .login-header {
        margin-bottom: 25px;
    }

    .login-field {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .login-form-group {
        margin-bottom: 15px;
    }
    
    .login-btn {
        padding: 11px 18px;
        font-size: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        min-height: auto;
        padding: 15px 0;
    }

    .login-box {
        max-width: 100%;
        width: 92% !important;
        margin: 20px auto;
        padding: 30px 20px 25px 20px;
        max-height: 95vh;
        border-radius: 15px;
    }

    .login-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .login-logo {
        max-width: 70px;
        margin-bottom: 12px;
    }

    .login-title {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .login-form-group {
        margin-bottom: 18px;
        padding: 12px 12px;
    }

    .login-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .login-field {
        padding: 12px 14px;
        font-size: 14px;
    }

    .login-btn {
        padding: 12px 16px;
        font-size: 14px;
        margin-top: 12px;
    }

    .alert {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .carousel-indicators {
        bottom: 15px;
        z-index: 10;
        gap: 8px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        transform: scale(1.2);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        opacity: 0.7;
        width: 45px;
        height: 45px;
        left: 10px !important;
        right: 10px !important;
    }
    
    .login-wrapper {
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        z-index: 50;
        overflow-y: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-box {
        max-width: 100%;
        width: 90% !important;
        padding: 25px 15px 20px 15px;
        margin: 15px auto;
        border-radius: 12px;
        max-height: 95vh;
    }
    
    .login-header {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .login-header::after {
        width: 50px;
    }

    .login-logo {
        max-width: 60px;
        margin-bottom: 10px;
    }

    .login-title {
        font-size: 20px;
        letter-spacing: 0.3px;
    }

    .login-form-group {
        margin-bottom: 15px;
        padding: 10px 10px;
    }

    .login-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .login-label i {
        margin-right: 4px;
        font-size: 0.9rem;
    }

    .login-field {
        padding: 11px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .password-toggle {
        padding: 8px 10px;
        font-size: 1rem;
    }

    .login-btn {
        padding: 11px 14px;
        font-size: 13px;
        margin-top: 10px;
        letter-spacing: 0.5px;
    }

    .alert {
        font-size: 12px;
        padding: 10px 10px;
        margin-bottom: 15px;
    }

    .alert-danger p {
        margin-top: 6px;
        font-size: 11px;
    }

    .field-error {
        font-size: 11px;
        margin-top: 4px;
    }

    .login-logo {
        max-width: 60px;
        margin-bottom: 10px;
    }

    .login-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .login-field {
        padding: 11px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .login-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .login-form-group {
        margin-bottom: 12px;
    }

    .login-btn {
        padding: 10px 14px;
        font-size: 13px;
        margin-top: 8px;
        border-radius: 6px;
    }
    
    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
    }
    
    .alert {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 12px;
        border-radius: 6px;
    }
}

.navbar{
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
    position: fixed;
    z-index: 100;
    background: #fff;
    top: 0;
    width: 100%;
}

.navbar-nav .dropdown-item:hover{
    background:#1b5e20;
    color: #fff;
}

.navbar .navbar-brand {
    max-width: 25%;
}

.navbar .navbar-brand img {
    width: auto;
    height: 50px;
    margin-right: 15px;
}
.navbar-light .navbar-nav .nav-link{
    color: #1b5e20;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 20px;
    margin-right: 5px;
    padding: 0.42rem .5rem ;
    transition: all 0.3s ease-in-out;
}
.navbar-light .nav-item.active> .nav-link,
.navbar-light .navbar-nav .nav-link:hover{
    background-color: #1b5e20;
    color: #fff;
    box-shadow: inset 1px 1px 1px rgb(0 0 0 / 70%);
}
.navbar-light .nav-item .dropdown-menu{
    border-top: 2px solid #1b5e20;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 0.2);
    padding: 0;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #1b5e20;
}
#ministry {
    width: 40%;
}

.right-handmenu {
    display: contents;
    padding: 0;
    margin: 0;
}

#simple-vertical {
    width: 100%;
    color: #fff;
}

.blockSample {
    left: 20px;
    top: 20px;
    padding: 6px 8px;
    background: #FFF;
    color: #000;
}

.more-products-nav {
    margin-top: 70px;
}


/*--------------------- code for home page End here ----------------------*/


/*--------------------- code for point page start here ----------------------*/


.redTip {
    background-color: red !important
}
.redTip-arrow::before {
    border-left-color: red !important
}

.nav-pills .nav-link {
    text-align: center;
    width: 100%;
    display: table;
    border-radius: 0;
}

.nav-pills .nav-link.active {
    background-color: #1b5e20;
}

.nav-pills .nav-link:hover {
    color: #fff;
    background-color: #6d4c41;
}


/*--------------------- code for point page End here ----------------------*/

#length {
    overflow-y: scroll;
    height: 90vh;
}


/* Hide scrollbar for Chrome, Safari and Opera */

#length::-webkit-scrollbar {
    display: none;
}


/* Hide scrollbar for IE, Edge and Firefox */

#length {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
    >.col,
    >[class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Point page side nav start */
.leftNav{
    position: absolute;
    top: 76px;
    left: 0;
    bottom: 0;
    width: 80px;
    background: #fff;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #1b5e20;
    z-index: 2;
    box-shadow: 1px 0px 2px rgb(0 0 0 / 10%);
    overflow-y: auto;
    overflow-x: hidden;
}
.leftNav i.fas, .leftNav i.fab{
    font-size: 24px;
    color: #4caf50;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.leftNav div.menuItem{
    padding:10px 5px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    min-height: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.leftNav div.menuItem:hover, 
.leftNav div.menuItem:hover i.fas{
    background-color: #dee3de;
    color: #1b5e20;
}
.subNav{
    position: absolute;
    top: 76px;
    left: 0;
    bottom: 0;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    background: #dee3de;
    z-index: 1;
    box-shadow: 1px 0px 2px rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in-out;
    padding: 20px 10px;
    font-size: 14px;
    overflow-y: auto;
    overflow-x: hidden;
}
.subNav h6{
    font-size: 14px;
    color: #1b5e20;
    margin-bottom: 20px;
}
.subNav label{
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #515a52;
}
.subNav input[type=checkbox], .subNav input[type=radio]{
    position: relative;
    top: 2px;
}
.subNav.open{
    visibility: visible;
    opacity: 1;
    left: 80px;
}
.form-control,.form-select{
    border: none;
    border-radius: 20px;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in-out;
}
.subNav .form-control:hover{
    box-shadow: 0px 0px 2px rgb(0 0 0 / 10%);
}
.closeSubNav{
    position: absolute;
    right: 5px;
    top: 5px;
    color: #bbb;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.closeSubNav:hover{
    color: rgb(201, 0, 0);
}
.pointRepresentation{
    display: none;
}
.pointRepresentation.on{
    display: block;
}
.pointRepresentation .form-group{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: space-between;
}
.pointRepresentation .form-group .form-control {
    max-width: 150px;
}
/* Point page side nav end */

/* E Plantation start */



div#menu-index {
    flex-basis: 230px;
}
#menu-index ul{
    padding: 0;
    position: fixed;
    width: 230px;
    overflow: auto;
    max-height: calc(100vh - 76px);
}
/* Hide scrollbar for Chrome, Safari and Opera */
#menu-index ul::-webkit-scrollbar {
    /* display: none; */
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
#menu-index ul {
    -ms-overflow-style: none;  /* IE and Edge */
    /* scrollbar-width: none;  Firefox */
  }
#menu-index ul li{
    list-style: none;
}
#menu-index ul li a{
    color: #144617;
    background: #dee3de;
    display: block;
    padding: 5px 10px;
    margin-bottom: 4px;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1;
    line-height: 20px;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}
#menu-index ul li a.activeLink {
    background: #144617;
    color: #65d069;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 50%);
}
/* #menu-index ul li a::after{
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid rgba(20, 70, 23, 0);
    transition: all 0.3s ease-in-out;
} */
#menu-index ul li a.activeLink::after{
    border-left: 10px solid #144617;
}
#menu-index ul li a:hover {
    background: #144617;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
}
.navbar-light .navbar-toggler{
    border: none;
}

.rightSection .btn-primary-forest{
    display: none;
}

.rightSection{
    flex-grow: 2;
    width: min-content;
    padding: 15px;
}

.rightSection .form-group{
    margin-bottom: 15px;
}
.rightSection .scrollSpace{
    height: 100vh;
}

.wrapContent{
    height: calc(100vh - 76px);
    overflow-y: scroll;
    scroll-behavior: smooth;
    display: flex;
}
.section{
    padding: 10px;
    background: #e6e6e6;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 1px 2px 2px rgb(0 0 0 / 0.15);
}
.rightSection .section:first-child{
    margin-top: 0;
}
.section h5{
    position: relative;
    margin-bottom: 1.5rem;
    color: #384539;
    font-weight: bold;
}
.section h5::after{
    content: "";
    position: absolute;
    height: 3px;
    width: 30px;
    left: 0;
    bottom: -10px;
    background: #4CAF50;
    border-radius: 3px;
}

.removeEntry {
    padding-top: 2px;
    display: table;
    color: #7e7676;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    margin-left: auto;
    font-size: 12px;
}
.removeEntry:hover {
    color: #d43a3a;
}

.viewMap{
    height: 500px;
    width: 100%;
}

#rotationTableInput .form-control, #plantingOrderInput .form-control, .rotationTable .form-control,.plantingOrderTable .form-control{
    margin-bottom: 15px;
}

/* E Plantation end */

/* Slider start */

#carouselExampleInterval .carousel-inner .carousel-item{
    height: 100vh;
    background-size: cover;
    animation-duration: 8s;
}

@media (max-width: 1024px) {
    #carouselExampleInterval .carousel-inner .carousel-item{
        height: calc(100vh - 67px);
    }
}

/* Slider end  */
#expandMenu{
    display: none;
}
.scrollSpace{
    height: 90vh;
}

#layercontent .active {
    border: solid 2px #1b5e20 !important;
}
.dataTable thead{
    background: #1b5e20;
    color: #fff;
}
.dataTables_wrapper .dataTables_filter{
    margin-bottom: 5px;
}
.dataTable tr {
    border: 0px solid #3db543;
}
.dataTable tr td{
    vertical-align: middle;
}
table.dataTable.no-footer{
    border: none!important;
}
.table-striped>tbody>tr:nth-of-type(odd){
    --bs-table-accent-bg: rgb(238 252 239);
}
.ui-autocomplete.ui-widget-content{
    z-index: 5;
    background: #fff;
    font-size: 14px;
}
.ui-autocomplete.ui-menu{
    padding: 0;
}
.ui-autocomplete.ui-widget-content .ui-state-active{
    color: #fff;
    background: #144617;
    border: none;
}
.ui-autocomplete.ui-widget-content .ui-menu-item-wrapper{
    padding: 2px 10px;
}
@media screen and (max-width: 1024px) {
    body{
        padding-top: 67px;
    }
    .navbar .navbar-brand img{
        height: 40px;
        margin-right: 10px;
    }
    .leftNav,.subNav{
        top: 66px;
    }
    .navbar-light .navbar-nav .nav-link{
        margin-right: 0;
    }
    #carouselExampleInterval .carousel-inner .carousel-item{
        height: calc(100vh - 67px);
        background-size: cover;
    }
    .wrapContent{
        height: calc(100vh - 67px);
    }
}
@media screen and (max-width: 991px) {    
    .navbar-collapse{
        background: #fff;
        border-radius: 15px;
        padding: 10px;
        position: absolute;
        right: 10px;
        top: 45px;
        width: auto;
    }
    .navbar-collapse.show{
        box-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
    }
}
@media screen and (max-width: 767px) {

    .login .overview div{
        width:60%;
    }

    .wrapContent{
        flex-direction: column;
    }
    div#menu-index{
        flex-basis: auto;
    }
    #menu-index ul{
        /* width: 100%; */
        z-index: 1;
        background: #fff;
        visibility: hidden;
        opacity: 0;
        left: -230px;
        border-right: 2px solid #1b5e20;
        transition: all 0.3s ease-in-out;
    }
    #menu-index ul.menu.showMenu{
        visibility: visible;
        opacity: 1;
        left: 0;
        max-height: calc(100vh - 67px);
    }
    .rightSection{
        width: 100%;
    }
    #expandMenu{
        display: block;
        text-align: center;
        background: #1b5e20;
        color: #fff;
        padding: 1px 10px;
        transition: all 0.3s ease-in-out;
        position: fixed;
        z-index: 2;
        transform: rotate(90deg);
        left: -30px;
        top: 130px;
        border-radius: 3px 3px 0 0;
        box-shadow: 2px -2px 8px rgb(0 0 0 / 0.5);
    }
    #expandMenu i{
        transform: rotate(180deg);
        transition: all 0.3s ease-in-out;
    }
    #expandMenu.rotate180 i{
        transform: rotate(0deg);
    }
    #expandMenu.rotate180{
        left: 200px;
    }
    .removeEntry{
        padding:0 0 10px;
    }
}

@media screen and (max-height: 450px) {
    .sidenav,
    .sidenav2,
    .sidenav3 {
        padding-top: 15px;
    }
    .sidenav a,
    .sidenav2 a,
    .sidenav3 a {
        font-size: 18px;
    }
}



.floating-btn{
    position: fixed;
    top: 80px;
    right: 0;
    box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
    border-radius: 20px 0 0 20px;
    border: 1px solid #fff;
    border-right: none;
    z-index: 10;
}


.floating-btn2{
    position: fixed;
    top: 80px;
    left: 0;
    box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
    border-radius:  0 20px 20px 0 ;
    border: 1px solid #fff;
    border-right: none;
    z-index: 10;
}

.ol-popup {
        position: absolute;
        background-color: white;
        -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
        filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #cccccc;
        bottom: 12px;
        left: -50px;
        min-width: 280px;
      }
      .ol-popup:after, .ol-popup:before {
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
      }
      .ol-popup:after {
        border-top-color: white;
        border-width: 10px;
        left: 48px;
        margin-left: -10px;
      }
      .ol-popup:before {
        border-top-color: #cccccc;
        border-width: 11px;
        left: 48px;
        margin-left: -11px;
      }
      .ol-popup-closer {
        text-decoration: none;
        position: absolute;
        top: 2px;
        right: 8px;
      }
      .ol-popup-closer:after {
        content: "";
      }









/* style for fire  */
.accordion-item-fire h2{
    font-size: 24px !important;
    font-weight: bold !important;
    background: #36363620 !important;
    margin-bottom: 8px !important;
}
.container-fire{
    margin: 50px 58px 0 58px;
}
.container-report{
    min-height: 80vh;
    margin: 60px 58px 0 58px;
}
#footers {
    position: fixed; /* Change from sticky to fixed */
    bottom: 0; /* Ensure it stays at the bottom */
    background: rgb(255, 255, 255);
    width: 100%;
    z-index: 0;
    font-size: 8px; /* Ensure font size is properly defined */
    text-align: right;
    padding: 2px; /* Add padding if needed for spacing */
}

.menu-link {
    text-decoration: none !important;
    color: inherit; /* Inherit color from parent */
  }
.menu-link:hover {
    color: inherit; /* Ensures hover doesn't change color */
  }

.container-fire-prevention {
    background-color: #36363620;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
}

.container-fire-p {
    border-radius: 8px;
    margin: 10px;
    min-height: 80vh;
    padding: 0 100px 0 100px;
}

.container-pm {
    background-color: #36363620;
    padding: 20px;
    border-radius: 8px;
    margin: 30px;
}
.container-plant-m {    
    border-radius: 8px;
    margin: 10px;
}
.container-plant-m .pm-h2{    
    text-decoration: underline;
    text-decoration-color: #000000;
}

.container-ssp {
    background-color: #36363620;
    padding: 20px;
    border-radius: 8px;
    margin: 30px;
    margin-left:40px;
    margin-right:40px;
}
.container-ssp-m {    
    border-radius: 8px;
    margin: 5px;
}
.container-ssp-m h3 {    
    color: #000;
    text-decoration: underline;
    text-decoration-color: #1b5e20;
    font-size: 24px;
}
.container-ssp-m h2 {    
    color: #000;
    text-decoration: underline;
    text-decoration-color: #1b5e20;
    font: bold;
    /* font-size: 24px; */
}
.container-ssp-m p {    
    color: #1b5e20;
    font-size: 12px;
}
.container-ssp-m h4 {    
    color: #000000;
    font-size: 20px;
    padding-top: 16px;
}
#plantationtable{
    max-height: 45vh;
    overflow-y: scroll;
}

@media (max-width: 768px) {
    .container-pm {       
        margin: 10px;
    }

}

.card-custom {
    height: 120px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.fire_plan {
   padding-left: 60px;
}

/* Custom styles for each card */
#card-f-p:hover {
    background-color: #1b5e20;
    color: white;
}
/* Hover effect for text color */
.card-custom:hover .card-text {
    color: white;
}

.card-body {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    height: 100%;
}

h3.card-text {
    font-size: 24px;
    text-align: center;
}

.card-icon {
    display: none;
}

.card-custom:hover .card-icon {
    display: inline-block;
}

.removeEntry {
    display: inline-block;
    cursor: pointer;
    color: rgb(0, 0, 0); /* or another color that stands out */
    font-size: 12px;
}

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

.dropdown-menu-reports {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 175px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 10px;
    padding-bottom: 10px;
    border-radius: 4px;
    max-height: 200px;   /* Adjust the height based on your preference */
    overflow-y: auto;  
    border: 1px solid #ccc; /* Optional border for styling */
}

.dropdown-reports button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 175px; /* Set a fixed width */
    height: 40px; /* Set a fixed height */
    box-sizing: border-box; /* Ensures padding doesn’t affect the size */
}

.dropdown-reports button:hover {
    background-color: #198754;
}

.dropdown-reports label {
    display: block;
    margin-bottom: 8px;
}

.dropdown-reports label input {
    margin-right: 8px;
}

#selected-options {
    font-style: italic;
    font-size: 14px;
    color: gray;
}


.chart-container {
    width: 100%;  /* 100% of the parent container's width */
    max-width: 500px;  /* Max width of 600px */
    height: 300px;  /* Fixed height of 300px */
    margin: 0 auto;  /* Center the div horizontally */
}

.entry-radio {
    transform: scale(1.5); /* Adjusts the size of the radio buttons */
    margin-right: 10px; /* Adds space between radio and label */
}
.entry-label {
    font-size: 1.2em; /* Adjusts the size of the text */
}


.ol-control {
    z-index: 1000; /* Ensure it is above other elements */
  }





div#menu-index1  {
    flex-basis: 290px;
    background: #d8d8d8;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Hide horizontal scrolling if not needed */
    padding: 8px; /* Maintain consistent padding */
    border: 1px solid #ddd;
}
/* #menu-index1  ul{
    padding: 0;
    position: fixed;
    width: 230px;
    overflow: auto;
    max-height: calc(100vh - 76px);
} */
/* Hide scrollbar for Chrome, Safari and Opera */

  
  /* Hide scrollbar for IE, Edge and Firefox */
/* #menu-index1  ul {
    -ms-overflow-style: none; 
   
  }
#menu-index1  ul li{
    list-style: none;
}
#menu-index1  ul li a{
    color: #144617;
    background: #4b4949;
    display: block;
    padding: 5px 10px;
    margin-bottom: 4px;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1;
    line-height: 20px;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}
#menu-index1  ul li a.activeLink {
    background: #144617;
    color: #65d069;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 50%);
} */
/* #menu-index1  ul li a::after{
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid rgba(20, 70, 23, 0);
    transition: all 0.3s ease-in-out;
} */
#menu-index1  ul li a.activeLink::after{
    border-left: 10px solid #144617;
}
#menu-index1  ul li a:hover {
    background: #144617;
    color: rgba(255, 255, 255, 0.842);
    text-decoration: none;
}

.rightSection1{
    flex-grow: 2;
    width: min-content;
    padding: 0px;
}

.rightSection1 .form-group{
    margin-bottom: 0px;
}