body {
  font-family: Arial, sans-serif;
  height: 100vh;
  margin: 0;
  background-color: #f0f2f5;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  text-align: center;
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container .title {
  margin-top: 0px;
  margin-bottom: 45px;
}

.status {
  padding: 10px;
}

.status.success {
  background-color: lightgreen;
}

.status.info {
  background-color: lightblue;
}

.status.warning {
  background-color: orange;
}

.status.error {
  background-color: red;
}

.facebook-btn {
  background-color: #1877f2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 60%;
  text-decoration: none;
}

.facebook-btn:hover {
  background-color: #165cb8;
}

.dropdown {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 60%;
}

#influencer-input-list-title {
  display: flex;
  justify-content: center;
}

#influencer-input-list-title h2 {
  width: 60%;
}

#influencer-input-list {
  width: 60%;
  margin-bottom: 10px;
  resize: none;
  border: 1px solid #ccc;
}

.influencer-list-container {
  display: flex;
  justify-content: center;
}

#influencer-list {
  width: 60%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

#influencer-list li {
  margin-bottom: 5px;
  text-align: start;
  border: 1px solid #ccc;
  padding: 15px;
}

.influencer-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.influencer-status {
  margin-top: 5px;
}
