.snowday-calculator {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.input-section {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #005bb5;
}

.result-section {
    margin-top: 20px;
}

#probability-bar {
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

#probability-bar div {
    height: 100%;
    background: #0073e6;
    width: 0;
    transition: width 0.5s;
}