.aig-container {
  width: 90%;
  max-width: 700px;
  margin: 50px auto;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  box-sizing: border-box
  color: white;
  font-family: 'Poppins', sans-serif;
}

.aig-remaining {
  text-align: center;
  margin-bottom: 15px;
  color: black;
}
.aig-loading {
  text-align: center;
  color: black;
}

.aig-chatbox {
  width: 100%;
  height: 120px;
  border-radius: 18px;
  border: none;
  padding: 15px;
  font-size: 16px;
  resize: none;
  outline: none;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.aig-upload {
  background: #58c7c9;
  color: black;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.aig-upload input {
  display: none;
}

.aig-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.aig-generate {
  background: #58c7c9;
}

.aig-quote {
  background: #9aa0a6;
}

.aig-buttons button {
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;
  color: Black;
}

.aig-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.aig-preview img {
  max-width: 100%;
  border-radius: 15px;
  margin-top: 10px;
  display: none;
}
