body{
    margin:0;
    padding:0;
    background-color: rgba(241, 250, 238, 0.1)

}



#title-container h1{
    margin:0;
    background: linear-gradient(90deg, #E3F2FD, #fff9e6);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    color: #333333

}

#rangeslider-container{
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    

}

#slider-container{
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    

}

/* Customize the range slider appearance */
#range-slider .rc-slider-rail {
    background-color: #ddd; /* Light gray color for the entire rail (unselected range) */
}

#range-slider .rc-slider-track {
    background-color: #1a9a8b; /* No color for the selected track (because it's just a single year) */
}

#range-slider .rc-slider-handle {
    background-color: #7F8C8D; /* Blue color for the handle (selected year) */
    border-color: #7F8C8D; /* Matching border color */
    width: 15px;  /* Adjust size of the handle if needed */
    height: 15px;
}

/* Customize the year selection slider appearance */
#year-slider .rc-slider-rail {
    background-color: #ddd; /* Light gray color for the entire rail (unselected range) */
}

#year-slider .rc-slider-track {
    background-color: transparent; /* No color for the selected track (because it's just a single year) */
}

#year-slider .rc-slider-handle {
    background-color: #4169E1; /* Blue color for the handle (selected year) */
    border-color: #4169E1; /* Matching border color */
    width: 15px;  /* Adjust size of the handle if needed */
    height: 15px;
}



/* Flexbox container for map and plots */
#main-container {
    display: flex;
    flex-direction: row;
    padding: 10px;
}

/* Style for the map and plot containers */
.chart-container {
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.8);
    margin: 10px;
    flex: 1;
    padding: 10px;
}

#choropleth-title {
    font-size: 20px;
    font-family:"Arial";
    font-weight:bold;
    background: linear-gradient(90deg, #75bcef, #a4ecf7);
    text-align:center;
    margin-bottom: 0px;

}

.btn{
    margin:10px
}

#open-modal-btn{
    margin-top:10px;
    padding:10px 20px;
    font-size:16px;
    background-color:#007bff;
    color:white;
    border:none;
    border-radius: 5px;
    cursor: pointer;
}

#trend-analysis-container {
    display:flex;
    justify-content: space-between;
    align-items:top;

}

.dropdown-container {
    width :37%;
    padding: 10px;
}

#dropdown-title {
    font-size: 20px;
    font-family:"Arial";
    font-weight:bold;
    background: linear-gradient(90deg, #75bcef, #a4ecf7);
    text-align:center;
    margin-bottom: 0px;

}

.trend-graph-container {
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.8);
    margin: 10px;
    flex: 1;
    padding: 10px;
}



