/* Temperatur-farver */
.hot {
    color: #ff5733;
}

.mild {
    color: #ffb347;
}

.cold {
    color: #1e90ff;
}

/* Overordnet stil */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    transition: background 0.6s ease;
    min-height: 100vh;
}


.weatherInfo {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Baggrunde for vejrtype */
.weather-clear {
    background: linear-gradient(to bottom, #ffe57f, #ffffff);
}

.weather-rain {
    background: linear-gradient(to bottom, #a0c4ff, #d0d0d0);
}

.weather-clouds {
    background: linear-gradient(to bottom, #cfd8dc, #eceff1);
}

.weather-snow {
    background: linear-gradient(to bottom, #ffffff, #e0f7fa);
}

.weather-thunderstorm {
    background: linear-gradient(to bottom, #616161, #9e9e9e);
}

/* Tip-farver */
.tip.weather-clear {
    color: #e67e22;
}

.tip.weather-rain {
    color: #4a90e2;
}

.tip.weather-clouds {
    color: #666666;
}

.tip.weather-snow {
    color: #1e90ff;
}

.tip.weather-thunderstorm {
    color: #800080;
}

.tip {
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1rem;
}

footer{
    margin-top: 0px;
    background: url("../images/ooter.png") no-repeat center center fixed;
    background-size: cover;
}

.ikoner{
    width: 80px;
    height: auto;
}

#packingList input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
  }
  
  #packingList label {
    display: block;
    padding: 0.5rem;
    cursor: pointer;
  }