body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f0f2f5;
  color: #1c1e21;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #0d1117;
}

h2 {
  text-align: center;
  color: #0d1117;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  background-color: #e0e0e0;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1em;
  border-radius: 5px 5px 0 0;
  margin: 0 2px;
  transition: background-color 0.3s ease;
}

.tab-button:hover {
  background-color: #d0d0d0;
}

.tab-button.active {
  background-color: #ffffff;
  border-bottom: 2px solid #1877f2;
  color: #1877f2;
}

.tab-content {
  display: none;
  max-width: 800px;
  margin: 20px auto;
  background-color: #ffffff;
  border: 1px solid #dddfe2;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

#posts-container, #reports-container {
  max-width: 800px;
  margin: 20px auto;
}

.post {
  background-color: #ffffff;
  border: 1px solid #dddfe2;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.post p {
  margin: 0 0 10px 0;
  white-space: pre-wrap; /* Respects newlines in the text */
}

.post small {
  color: #606770;
}

.video-tag {
  display: inline-block;
  background-color: #e7f3ff;
  color: #1877f2;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

.post-now-btn {
  background-color: #42b72a;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.post-now-btn:hover {
  background-color: #36a420;
}

/* Estilos para os relatórios */
.report-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.report-item h3 {
  margin-top: 0;
  color: #1c1e21;
}

.report-item ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.report-item li {
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
}

.report-item li:last-child {
  border-bottom: none;
}

.status-success {
  color: #42b72a;
  font-weight: bold;
}

.status-failure {
  color: #f44336;
  font-weight: bold;
}
