body {
  margin:0;
  font-family:sans-serif;
  background:#f0f8ff;
  overflow-x:hidden;
}
.content {
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:10px;
}
.pet-container {
  position:relative;
  width:100%;
  height:300px;
  border:1px solid #ccc;
  margin-bottom:10px;
}
.pet {
  position:absolute;
  bottom:0;
  font-size:50px;
  cursor:pointer;
  transition:bottom 0.1s;
}
.status-container {
  position:absolute;
  top:0;
  left:0;
  background:rgba(255,255,255,0.8);
  padding:5px;
  border-radius:5px;
}
.controls {
  margin:10px;
  display:flex;
  gap:5px;
  flex-wrap:wrap;
  justify-content:center;
}
.chatbox {
  width:80%;
  height:200px;
  border:1px solid #ccc;
  overflow-y:auto;
  margin:10px;
  padding:5px;
  background:#fff;
}
.input-container {
  display:flex;
  gap:5px;
  width:80%;
  justify-content:center;
  margin-bottom:20px;
}
input {flex:1;padding:5px;}
.message {margin:2px;padding:2px;}
.pet-msg {color:green;}
.user {color:blue;}
#languageProgressContainer {
  width:100%;
  height:10px;
  background:#ccc;
  margin:2px 0;
}
#languageProgress {
  height:100%;
  background:#4caf50;
  width:0%;
}
#petSelectionOverlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  color:#fff;
  font-size:1.2em;
  z-index:999;
}
