*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
    background-color: rgb(89,90,106);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgb(61, 58, 58);
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
}
h1{
    text-align: center;
    font-size: 2rem;
}
.user-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
}
.user-input-container{
    display: flex;
    justify-content: space-between;
  

}
#user-input {
    width: 78%;
    padding: 0.4rem;
    border-radius: 5px;
    background-color: #365c43 !important;
    color: white; /* Ensures text color contrasts well */
}
#user-input::placeholder {
    color: white; 
    font-size: 1.1rem;
    font-family:'Gill Sans';
}

/* Override autofill background */
input:-webkit-autofill {
    background-color: #365c43 !important;
    color: white !important; /* Optional: also set text color */
    -webkit-box-shadow: 0 0 0 1000px #365c43 inset !important;
    box-shadow: 0 0 0 1000px #365c43 inset !important;
}

/* Optional: Remove browser's default border */
input {
    border: none;
    outline: none; /* Optional: remove outline on focus */
}

#search-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: #1d813f !important; /* Set your desired background color */
    color: white; /* Text color */
    border: none; /* Remove default border */
    cursor: pointer; /* Pointer cursor for better UX */
    font-size: 1rem;
}

/* Remove focus outline on click */
#search-btn:focus {
    outline: none;
}

/* Optional: Add hover effect */
#search-btn:hover {
    background-color: #166f31 !important; /* Darker shade on hover */
}

/* Optional: Add active effect when button is clicked */
#search-btn:active {
    background-color: #145e29 !important; /* Even darker shade when clicked */
}


.circle{
    margin-top: 1rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #299f5d;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: 700;
    background: conic-gradient(#299f5d var(--progress-degree, 0%),
    #283a2e 0%);
    flex-direction: column;
}
.circle-span{
    position: relative;
    z-index: 2;
}

.progress{
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
}
.stats-card{
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
}
.card{
    background-color: #1d813f;
    width: 40%;
    max-width: 290px;
    padding: 10px;
    border-radius: 10px;
    min-height: 10px;
}
h4{
    font-size: 0.9rem;
}