body, 
header {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f1f1;
    text-align: center;
}

h1 {
    color: #333;
}

.navbar {
    background-color: #2c3e50;
    overflow: hidden;
}

.navbar-item {
    float: left;
    display: block;
    color: #ecf0f1;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navbar-current-item {
    background-color: #3498db;
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 5px;
}

.navbar-item:hover {
    background-color: hwb(204 0% 15%);
    color: white;
    box-shadow: inset 0 0 1px black;
}

.navbar-current-item:hover{
    background-color: hwb(204 0% 45%);
    color: white;
    box-shadow: inset 0 0 1px black;
}

.main-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px auto;
    width: fit-content;
    justify-content: center;
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: row;
}

.weather-container {
    padding: 20px;
}

.weather-container .description-container {
    display: flex;
    justify-content: center; 
}

.extras-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#checkbox-container {
  border: 1px solid #ccc;
  padding: 10px;
}

#checkbox-container label {
  display: block;
  margin-bottom: 5px;
}

.remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    border: none;
    background-color: #555555;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

#location {
    font-weight: bold;
}

#temperature {
    font-size: 24px;
}

#description {
    color: #777;
}

#add-button{
    width: 60px;
    height: 25px;
    font-size: 14px;
}

#location-input{
    height: 25px;
    font-size: 14px;
}

.forecast-container{
    display: flex;
    flex-direction: column;
    border-right: 1px solid black;
    padding: 20px;
    width: fit-content;
}

.forecast-container .description-container {
    display: flex;
    justify-content: center;
}

.reduce-spacing{
    margin-bottom: -5px;
}