.filter-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #495057;
}

.result-card {
    margin-bottom: 15px;
    transition: all 0.3s;
    border-left: 4px solid #6c757d;
}

.result-card:hover {
    border-left-color: #0d6efd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.result-title {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.result-title:hover {
    text-decoration: underline;
}

.result-info {
    font-size: 0.9rem;
    color: #6c757d;
}

.modal-body {
    max-height: 80vh;
    overflow-y: auto;
}

#resetFilters {
    margin-top: 10px;
}

.badge-info {
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #e9ecef;
    color: #495057;
    font-weight: normal;
}

.no-results {
    padding: 50px;
    text-align: center;
    color: #6c757d;
}

#map {
    height: 60vh;
}

.hero-section {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
}

.cta-btn {
    padding: 10px 25px;
    font-size: 1.1rem;
    border-radius: 5px;
}

.search-input {
    padding-left: 35px;
    padding-right: 30px;
    height: 40px;
}

.search-icon {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.clear-icon {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
    z-index: 10;
}

.clear-icon:hover {
    color: #dc3545;
}

/* For Firefox */
input[type="search"]::-moz-search-cancel-button {
    -moz-appearance: none;
}

/* For WebKit browsers like Chrome and Safari */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.navbar-nav .nav-link {
    text-decoration: none;
}

.navbar-nav .nav-link.active {
    text-decoration: underline;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

/* Make carousel indicators black and more prominent */
.carousel-indicators [data-bs-target] {
    background-color: black;
    /* Black color */
    width: 16px;
    /* Larger size */
    height: 16px;
    border-radius: 50%;
    /* Circular */
    opacity: 0.7;
    /* Slightly transparent */
    margin: 0 6px;
    /* Space between indicators */
}

.carousel-indicators .active {
    opacity: 1;
    /* Fully opaque when active */
    transform: scale(1.2);
    /* Slightly bigger when active */
}

/* Customize prev/next button icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.7);
    /* Darker background */
    background-size: 70% 70%;
    /* Make the icon larger inside */
    border-radius: 50%;
    padding: 15px;
    /* Increase click area */
}

/* Optional: Add hover effect */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Optional: Add box-shadow to controls for visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}