﻿/* Additional style rules */
.innerContainer
{
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

#hoverInfo
{
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none;
    padding: 4px 8px;
    pointer-events: none;
    position: absolute;
}

#viewDiv
{
    /* Ensure child elements with absolute positioning are relative to this container */
    position: relative;
}

.thermometer-card
{
    /* Optional: blurs the background content behind the card, works on modern browsers */
    backdrop-filter: blur(10px);
    /* Optional: slightly transparent border */
    border: 1px solid rgba(0, 0, 0, 0.2);
    left: 10px;
    position: absolute;
    top: 100px;
    z-index: 1000;
}

#thermometerLegend
{
    align-items: center;
    display: flex;
    flex-direction: column;
    /* Adjust height if necessary */
    height: 80px;
    justify-content: space-between;
    width: 100%;
}

.thermometer-card .card-header
{
    /* Adjusts the font size of the card heading */
    font-size: 0.5rem;
}

.thermo-section
{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%;
}

.thermo-background
{
    /* Adjust colors as necessary */
    background: linear-gradient(to top, rgba(245, 245, 220, 0.5), rgba(128, 0, 128, 0.5));
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.max-value, .min-value
{
    /* Adjusts the font size of the max and min temperature labels */
    font-size: 0.6rem;
    left: 100%;
    position: absolute;
    white-space: nowrap;
}

.max-value
{
    /* adjust spacing from the thermometer */
    margin-left: 5px;
    top: 0;
}

.min-value
{
    /* adjust spacing from the thermometer */
    margin-left: 5px;
    bottom: 0;
}

.choices__inner
{
    max-block-size: 8rem;
    overflow-y: auto;
}
