/* Map container */
#maps {
    position: relative;
}

/* Search bar container */
#search-bar-container {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 16px;
    transition: width 0.3s, left 0.3s, top 0.3s, border-radius 0.3s;
}

/* Search bar input */
#search-bar {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 16px;
    border-radius: 25px;
}

/* Search button */
#search-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Category bar styling */
#category-bar {
    position: absolute;
    top: 20px;
    left: 320px;
    display: flex;
    gap: 10px;
    background: transparent;
    padding: 8px 15px;
    z-index: 1000;
}

/* Category buttons */
.category-button {
    background-color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-button:hover {
    background-color: #e0e0e0;
}

/* Sidebar styling */
/* Sidebar styling enhancements */
#sidebar {
    position: absolute;
    margin-top: 12px;
    top: 70px;
    left: 20px;
    width: 350px;
    max-width: 90%;
    height: 80vh;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    display: none;
    font-family: Arial, sans-serif;
}

#sidebar.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Sidebar close button */
#close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

/* Sidebar content styling */
#village-info h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

#village-info p {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.religion-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color: #444;
}

.religion-name {
    font-weight: bold;
    font-size: 14px;
}

.religion-population {
    font-size: 14px;
    color: #666;
}

/* Highlight effect for category items in sidebar */
.category-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-item h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px;
}

.category-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.category-item p {
    font-size: 14px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #sidebar {
        width: 90%;
        left: 5%;
        padding: 15px;
    }
}
#back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

#back-button:hover {
    background-color: #0056b3;
}
