body {
    padding: 0;
    margin: 0;
    color: #1A1C16;
    background: #F9FAEF;
    font-family: 'poppins', sans-serif;
}

h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: rgb(69, 69, 69);
    text-align: left;
    padding: 10px 5px;
}

footer {
    background-color: rgb(255, 0, 0);
    color: rgb(69, 69, 69);
    text-align: left;
    padding: 10px 5px;
}

main {
    padding-left: 35vw;
    padding-right: 35vw;
}

.head {
    margin: 0;
}

.userimg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0;
}

.water {
    background: #BCECE7;
    border: solid 1px #b0dbff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding-left: 5px;
    padding-right: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    color: #333;
}

container p {
    margin-right: 10px;
    color: #1a98ff;

}

.plant-img-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.drop {
    width: auto;
    height: 25px;
    margin: 10px;
    padding-bottom: 5px;
}

container p {
    margin-right: 10px;
}

.img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border-radius: 15px;
    width: 100%;
}

.plant {
    background: #EEEFE3;
    margin: 10px 0;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 25px;

}

.plant h2 {
    color: #4C662B;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: xx-large;
    text-align: center;
    font-weight: 500;
}

.plant h3 {
    color: #44483d;
    margin: 10px;
    font-size:medium;
    margin-top: 0;
    font-weight: 500;
    text-align: center;
    font-style: italic;

}

.plant p {
    color: #1A1C16;
    padding: 10px;
    font-size: medium;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;

}


.progress-container {
    margin: 10px;
    width: auto;
    background-color: #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-bar {
    height: 10px;
    background-color: #77d2ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 1s ease;
    width: 30%; /* Initial state */
}

.progress-text {
    color: white;
    font-size: 10px;
    font-weight: bold;
}





.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e8e9de;
    color: rgb(255, 0, 0);
    padding: 10px 0;
    height: 35px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.4);
}

.footer-link {
    font-weight: 600;
    color: rgb(44, 44, 44);
    text-decoration: none;
    font-size: 16px;
    padding: 5px 20px;
    
}

/* .plus-button {
    font-size: 60px;
    color: white;
    background-color: #7b63ff;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    top: -15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    clip-path: circle(50% at 50% 50%);
    min-width: 70px;
    min-height: 70px;
}
 */
.footer-bar:after, .footer-bar:before {
    content: "";
    flex: 1;
}


@media (max-width: 600px) {

    .plus-button {
        width: 10vw;
        /* Responsive width */
        height: 10vw;
        /* Responsive height, maintain aspect ratio */
        min-width: 60px;
        /* Minimum size to maintain visibility and functionality */
        min-height: 60px;
    }

    main {
        padding-left: 24px;
        padding-right: 24px;
    }






}