
.status-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.quote-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}
.quote-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copy-btn {
  background: linear-gradient(to right, #ffcc99, #ff9999);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
.copy-btn:focus,
.like-icon:focus {
  outline: none !important;
}
.like-icon {
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}
.like-icon.liked {
  color: red;
}
