* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Gilroy'; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    color: white;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

h1 {
    text-align: center;
    text-transform: uppercase;
    padding-top: 20px;
}

.tab-container{
    max-width: 550px;
    height: 1.5rem;
    /* width: 40%; */
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 3rem;
    /* cursor: pointer; */
}

.tab {
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 4px;
    padding: 5px 8px;
}

.tab.current-tab{
    background-color:rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.weather-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 4rem;
}

.btn {
    all:unset;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    background-color:rgba(255, 255, 255, 0.4);
    padding: 10px 30px;
    margin-bottom: 10px;
}

.sub-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grant-location-container{
    display: none;
}

.grant-location-container.active{
    display: flex;
}

.grant-location-container img{
    /* size: 20rem; */
    margin-bottom: 2rem;
}

.grant-location-container p:first-of-type{
    font-size: 2rem;
    font-weight: 600;

}

.grant-location-container p:last-of-type{
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 0.85rem;
    margin-bottom: 1.50rem;
    letter-spacing: 0.75px;
}
.loading-container{
    display: none;
}

.loading-container.active{
    display: flex;
}

.loading-container p{
    text-transform: uppercase;
}

.user-info-container{
    display: none;
}

.user-info-container.active{
    display: flex;
}

.name{
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
    gap: 0 0.5rem;
}

.user-info-container p{
    font-size: 1.5rem;
    font-weight: 200;
}

.user-info-container img{
    height: 90px;
    width: 90px;
}

.name p{
    font-size: 2rem;
}

.name img{
    width: 30px;
    height: 30px;
}

.user-info-container p[data-temp]{
    margin-top: 3rem;
    font-size: 2.75rem;
    font-weight: 700;
}

/* .parameter-container{
    display: flex;
    gap: 10px 20px;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
} */

.parameter-container{
display: flex;
overflow-x: auto;
margin-top: 30px;
padding: 20px 0;
gap: 15px;
}

.parameter-container {
flex: 0 0 auto;
text-align: center;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 15px 25px;
min-width: 100px;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.parameter-container:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
}

/* .parameter img{
    width:50px;
    height:50px;
} */

.parameter p:first-of-type{
    font-size: 0.90rem;
    font-weight:600;
    text-transform: uppercase;
}

.parameter p:last-of-type{
    font-size: 0.80rem;
    font-weight: 200;
}

.form-container{
    display: none;
    width:90%;
    max-width:550px;
    margin:0 auto;
    justify-content: center;
    align-items: center;
    gap: 0 10px; 
    margin-bottom: 3rem;
}

.form-container.active{
    display: flex;
}

.form-container input{
    all:unset;
    width: calc(100% - 80px);
    height:40px;
    padding: 0 20px;
    background-color:rgba(219, 226, 239, 0.5);
    border-radius: 10px;
}

.form-container input::placeholder{
    color: rgba(255, 255, 255, 0.7);
}

.form-container input:focus{
    outline: 3px solid rgba(255, 255, 255, 0.7);
}

.form-container .btn {
    padding:unset;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom:1px;
}

.btn:hover {
background: rgba(255, 255, 255, 0.6);
transform: scale(1.05);
}

/* .form-container {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(255, 255, 255, 0.2);
border-radius: 30px;
padding: 6px 20px;
margin-bottom: 30px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.18);
transition: all 0.3s ease;
}

.form-container :hover {
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-container  input {
border: 0;
outline: 0;
background: transparent;
color: #fff;
padding: 10px 0;
flex: 1;
margin-right: 10px;
font-size: 18px;
}

.form-container input::placeholder {
color: rgba(255, 255, 255, 0.7);
}

.btn {
border: 0;
outline: 0;
background: rgba(255, 255, 255, 0.4);
width: 44px;
height: 44px;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease;
}

 */