body {
    font-family: 'Arial', sans-serif;
    background: #3B5323;
    color: #ecf0f1;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1400px;
    padding: 20px;
    background: rgba(79, 121, 66, 0.9);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center; /* Center align the title */
    color: #FF6347;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 60px 0;
    font-size: 2.5em;
}

.district-info {
    text-align: center;
    font-size: 1.3em;
    color: #bdc3c7;
    margin: 10px 0;
}

#map-container {
    width: 100%;
    height: 600px;
    padding: 15px;
    border-radius: 15px;
    background-color: rgba(85, 107, 47, 0.9);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

svg {
    width: 100%;
    height: auto;
}

.district-marker, .place-marker {
    stroke: #fff;
    stroke-width: 2;
    cursor: pointer;
}

.district-label, .place-label {
    font-size: 18px;
    fill: #ecf0f1;
    text-anchor: start; /* Left align the text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#info-panel {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#institutions-container, #sisters-container {
    background: rgba(28, 40, 51, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 45%;
    color: #ecf0f1;
    max-height: 250px;
    overflow-y: auto;
    text-align: left; /* Align text inside containers to the left */
}

h3 {
    margin-top: 0;
    color: #FF6347;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

li::before {
    content: "• ";
    color: #FF6347;
    font-size: 1.2em;
    margin-right: 5px;
}
