.weather-widget {
    position: fixed;
    top: 9%;
    left: 10px;
    width: 420px;
    z-index: 9999;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
}

.sub-forecast {
    flex: 1;
    padding: 10px;
    border-right: 1px solid #000000;
    display: fixed;
    align-items: center;
    flex-direction: column;
}

.weather-column:last-child {
    border-right: none;
}

.main-forecast {
    flex: 2;
    border-right: 1px solid #000000;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.weather-icon img {
    width: 50px;
    height: 50px;
    display: inline-block;
    align-items: center;
}

.forecast {
    font-size: 14px;
    font-weight: bold;
    padding: 3px;
}
.forecast-details{
    display: inline-block;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
}
.tempHigh {
    font-size: 14px;
    color: #ba2c2c;
    margin-top: 5px;
    font-weight: bold;
    display: inline;
    padding: 5px;
}
.tempLow {
    font-size: 14px;
    color: rgba(25, 80, 161, 0.43);
    margin-top: 5px;
    font-weight: bold;
    display: inline;
    padding: 5px;
}
.datetext {
    font-size: 16px;
    color: #333333;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}
.close-button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}
.close-button:hover {
    color: #ff0000;
}
/* styles for minimized display on webpage banner*/
/* CSS for the min-weather-widget div */
.min-weather-widget {
    position: absolute;
    display: flex;
    right: 32%;
    height:100%;
    align-items: center;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text color for better readability */
    border-radius: 5px;
    border-color: #000000;
    cursor: pointer;
}

.min-weather-icon {
    width: auto; 
    height: 100%;
    margin-right: 5px; /* Space between the icon and the forecast text */
}

.min-forecast {
    font: bold;
    font-size: 14px; /* Adjust the size as needed */
    margin-right: 10px; /* Space between the forecast text and temperature details */
}

.min-temp-details {
    padding: 5px;
    display: flex;
    flex-direction: column; /* Stack tempLow and tempHigh */
    font-size: 12px; /* Adjust the size as needed */
    
}

.min-tempLow{
    line-height: 1.2;
    font:bolder;
    color: rgba(43, 20, 219, 0.43);
}
.min-tempHigh {
    color: #ba2c2c;
    line-height: 1.2; /* Adjust the spacing between tempLow and tempHigh */
}
/* tool tip styles for minimized widget*/
.tooltip {
    visibility: hidden;
    width: 160px;
    background-color: #6a6666;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
}
.min-weather-widget:hover .tooltip {
    visibility: visible;
    opacity: 1;
}