﻿body {
    background-color: aliceblue;
    /*background-image: url('../Images/Image3.jpg');*/
    background-image: url('/images/connected-places.jpg') no-repeat center center;
}

.hide {
    display: none;
}

.show {
    display: block
}

.btn-light-blue {
    background-color: lightblue;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, darkslategray, red);
    color: white;
    border-radius: 5px;
}


/* ADD YOUR CUSTOM STYLES */
.expand-wrapper {
    overflow: hidden;
    transition: max-height 300ms ease, opacity 200ms ease, transform 200ms ease;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
}

    .expand-wrapper.expanded {
        max-height: 2000px; /* large enough for content */
        opacity: 1;
        transform: translateY(0);
    }


/* site.css */
/* site.css or custom.css */
/* custom.css */
.update-group-form input.form-control {
    height: 150px !important; /* override Bootstrap */
    width: 300px !important; /* override Bootstrap */
    max-width: 300px !important;
}

html {
    scroll-behavior: smooth;
}

.bg-teal, .btn-teal {
    background-color: #236666 !important;
}

.text-teal {
    color: #236666 !important;
}

.carousel .carousel-indicators li {
    width: 30px;
    height: 5px;
    border-radius: 0%
}

.carousel-caption {
    bottom: 200px;
}


.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.back-btn {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 8px;
}

/* Styling for Disabled Menu Items */
.menu-item-disabled {
    /* Style to make it look non-clickable */
    color: #6c757d !important; /* Greyed out text */
    cursor: not-allowed !important; /* Change cursor */
    pointer-events: none; /* CRITICAL: Disables click/hover events */
    /* Add the underline */
    text-decoration: underline;
    /* Ensure it doesn't interact with the dropdown toggle logic */
    background-color: transparent !important;
}

.about-container {
    background-color: #f8fafc;
    min-height: 100vh;
}

    .about-container h1, h2, h3 {
        color: #1e293b;
    }

.address-details-container {
    padding-left: 15px; /* reduced indent */
}

.table-striped-lightgreen tbody tr:nth-of-type(odd) {
    background-color: #eefaf0; /* light green stripe */
}

@keyframes progress-slide {
    0% {
        width: 0%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

.animate-progress {
    animation: progress-slide 1.2s ease-in-out infinite;
}



@media (max-width: 576px) {
    .carousel-caption {
        bottom: 20px;
    }

        .carousel-caption h5 {
            font-size: 30px;
        }

        .carousel-caption p {
            display: none;
        }
}
