.plant-stats {
    display: flex;
    gap: 0.5rem;
}

.moisture-section {
    width: calc(100vw - 2rem);
    margin: 0 auto 1rem auto;
    padding-bottom: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: linear-gradient(135deg, rgba(17,26,38,0.9), rgba(7,12,18,0.9));
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    place-items: anchor-center;
}

.moisture-section-image {
}

.moisture-card {
    padding: 1rem 1rem 0 1rem;
}


.moisture-status {
    margin: 0;
    font-size: 1.05rem;
    color: #f1f5f9;
}

.moisture-plant-image {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 0.75rem;
    margin: 0.25rem 0 0.75rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    object-fit: contain;
}

.cta-button {
    background: #c7f36a;
    color: #0b0f14;
    border: 0;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"] {
    padding: 0.65rem 0.8rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(8, 12, 18, 0.9);
    color: #f1f5f9;
}

@media (min-width: 721px) {
    .moisture-plant-image {
        max-width: 700px;
    }
}

@media (max-width: 720px) {
    .plant-stats {
        flex-direction: column;
    }

    .moisture-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
