body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.input-section label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 500;
}

.input-section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #0056b3;
}

.jugs-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.jug-section {
    position: relative;
}

.jug {
    width: 120px;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.tap {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.water {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #007bff;
    transition: height 0.5s ease;
}

.jug p {
    margin-top: 10px;
    font-weight: bold;
}

#steps {
    text-align: left;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #333;
    max-height: 200px;
    overflow-y: auto;
}

.pour {
    width: 10px;
    height: 0;
    background: #007bff;
    position: absolute;
    top: 50px;
    left: 60px;
    z-index: 1;
    transition: height 0.5s ease, width 0.5s ease;
}
