body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
}

.header {
    position: sticky;
    top: 0;
    background: #2e7d32;
    color: #fff;
    padding: 14px 16px 34px;
    font-size: 18px;
}

.status {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 14px;
    font-weight: bold;
    background: rgba(0,0,0,0.25);
    padding: 4px 10px;
    border-radius: 12px;
}

.container {
    padding: 15px;
}

.card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.small {
    font-size: 14px;
    color: #555;
}

.button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: #2e7d32;
    color: white;
    margin-top: 10px;
}

.button.gray {
    background: #777;
}

.milk-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 2px solid #2e7d32;
    background: white;
}

.milk-btn.active {
    background: #2e7d32;
    color: white;
}

.qty-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-btn {
    width: 50px;
    height: 50px;
    font-size: 26px;
    border-radius: 50%;
    border: none;
    background: #2e7d32;
    color: white;
}

.qty {
    font-size: 22px;
    font-weight: bold;
}