*{
    margin:0px;
    padding: 0px;
    font-family:'Times New Roman', Times, serif;
    box-sizing: border-box;
    color:#9EC8B9;
}
a {
    color: #9EC8B9;
    text-decoration: none;
}
.units{
    font-size: 20px;
    color:gray;
}
body{
    height: 100vh;
    background-color: #092635;
}
.web-name{
    text-align: center;
    font-size: 34px;
    margin-top:-30px;
    margin-bottom:20px;
    font-weight: bold;
}
.container{
    display:flex;
    align-items: center;
}
.weather-input{
    width:25%;  
    position:fixed;
    inset: 0;
    background-color: #1B4242;
    border: 10px double #5C8374;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding:40px;
}
.input-group {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    margin-left: -40px;
    width: calc(100% + 40px);
}
.input-group input {
    flex-grow: 1;
    padding: 10px;
    font-size: 18px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 3px solid #5C8374;
    border-right: none;
}
.input-group input::placeholder{
    color:black;
}
.input:focus{
    outline:none; 
}
.converter{
    padding:10px;
    font-size: 15px;
    border-radius: 20px;
    border: 3px solid #5C8374;
    outline:none;
    color:black;
}
.search-image{
    width: 18px;
}
.search-button{
    background: white;
    padding: 9.5px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 3px solid #5C8374;
    border-left: none;
    cursor:pointer;
    transition: 0.5s;
}
.search-button:hover{
    background-color: #5C8374;
}
.search-button:active{
    background-color: #5C8374;
}
.weatherIcon{
    background-position: 50% !important; 
    background-repeat: no-repeat !important;
    background-size: fill !important;
    display:block;
    height:15%;
    margin: 25px auto;
}
.Forecast {
    margin: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 1000px;
    gap: 15px;
    margin-left: 50px;
    overflow-x: auto;
}

.sub-div {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(33.33% - 10px);
    box-sizing: border-box;
    padding: 10px;
    border: 5px solid #5C8374;
    border-radius: 40px;
    text-align: center;
    font-size: 20px;
    background-color: #1B4242;
    transition: 0.3s;
    min-width: 300px;
}
.sub-div:hover{
    box-shadow: 5px 0px #5C8374, -5px 0px #5C8374;
}
.forecast-desc {
    font-style: italic;
    color: black;
}
.weather-output{
    margin-left:25%;
}
.heading{
    font-size: 30px;
    margin-top: 10px;
    margin-left: 10px;
}
.content{ 
    margin:20px;   
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width:1000px;
    gap: 10px;
    margin-left:70px;
    
}
.highlight{
    height: 200px;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(33.33% - 10px);
    box-sizing: border-box;
    padding: 10px;
    border: 5px solid #5C8374;
    border-radius: 40px;
    text-align: center;
    font-size:30px;
    background-color: #1B4242;
    transition: 0.3s;
}
.highlight:hover{
    box-shadow: 5px 5px #5C8374;
}
.icon{
    width: 50px;
}
.highlight-name{
    margin: 10px;
}

.feelsLike{
    font-size:20px;
    margin-top:20px;
}
.description{
    font-style: italic;
    font-size:18px;
    text-transform: capitalize;
}
hr {
    border: none;
    height: 3px; 
    background-color: #5C8374;
    margin:10px 0;
}
.date{
    font-size: 18px;
}
.city{
    font-weight: bold;
    font-size:20px;
}
.temperature{
    font-size: 64px;
}
.temperature span{
    font-size:20px;
}
.social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px; 
}

.social-links,
.social-links-one {
    display: flex;
    align-items: center;
    font-size: 16px; 
}

.social-links a,
.social-links-one a {
    color: #9EC8B9;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-links a:hover,
.social-links-one a:hover {
    text-decoration: underline;
}

.social-icons {
    width: 20px; 
    height: 20px; 
    margin-right: 10px;
}
.disclaimer{
    font-size: 18px;
}
.author{
    margin-top:10px;
    float: right;
    font-size: 18px;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #092635;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #1B4242;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a6363;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1B4242 #092635;
}

/* Ensure the Forecast div has a scrollbar */
.Forecast {
    scrollbar-width: thin;
    scrollbar-color: #1B4242 #092635;
}

/* Autocomplete Dropdown Styles */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 10px;
    background-color: #1B4242;
    border: 3px solid #5C8374;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: calc(100% - 80px);
    display: none;
    margin-top: -3px;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    color: white;
}

.autocomplete-item:hover {
    background-color: #5C8374;
}

/* Add these new styles for the logo */
.logo {
    position: fixed;
    top: 10px;
    right: 0px;
    width: 90px; /* Adjust the size as needed */
    border-radius: 50%;
    height: auto;
    z-index: 1000; /* Ensure it's above other elements */
}
