.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.search-box {
    text-align: center;
    padding: 20px;
}
#location-input {
    max-width: 600px;
    margin: 20px auto;
    position: relative;
}
.autocomplete {
    padding-left: 40px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 12px 20px;
    font-size: 14px;
}
.sub-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.sub-container h2, .sub-container p {
    padding-bottom: 10px;
}
#uv-temperature {
    background: #e0f2f1;
    border-left: 5px solid #26a69a;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#uv-temperature h2, #uv-temperature div {
    margin: 0;
    padding: 0 10px;
}

#uv-temperature .material-icons {
    color: #26a69a;
}

#uv-temperature span {
    vertical-align: middle;
}
.clothing-recommendation, .sunscreen-recommendation {
    background: #e8f0fe;
    border-left: 5px solid #3182ce;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
}
.clothing-recommendation h3, .sunscreen-recommendation h3 {
    margin: 0 0 10px 0;
    color: #3182ce;
}
.reminder-feedback {
    text-align: center;
    margin-bottom: 20px;
}

.location-display {
    font-size: 1.5rem;
    color: #3182ce;
    margin-top: 5px;
    margin-bottom: 10px;
}

.material-icons {
    vertical-align: middle;
    margin-right: 5px;
    font-size: 1.5rem;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}