.ainewsposter-container .generate-articles-container {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ainewsposter-container .generate-articles-header {
  color: #21759b;
  margin-bottom: 20px;
}

.ainewsposter-container .generate-articles-summary {
  font-size: 14px;
  font-weight: bold;
}

.ainewsposter-container .generate-articles-list {
  list-style-type: none;
  padding: 0;
}

.ainewsposter-container .generate-articles-list-item {
  margin-bottom: 10px;
}

.ainewsposter-container .generate-articles-button {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #21759b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.ainewsposter-container .spinning-loader {
  border: 4px solid rgba(0,0,0,0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s ease infinite;
  visibility: visible;
  margin: auto;
  margin-bottom: 5px;
}

.ainewsposter-container .ainewsposter-save-button{
  margin-left: 15px;
  margin-bottom: 20px;
}

.ainewsposter-container .ainewsposter-save-button.margin-top-only{
  margin: 10px 0px 0px 0px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ainewsposter-container .error-icon,
.ainewsposter-container .error {
  color: red;
}

.ainewsposter-container .articles-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.ainewsposter-container .articles-table thead {
  background-color: #f4f4f4;
}

.ainewsposter-container .articles-table th,
.ainewsposter-container .articles-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.ainewsposter-container .articles-table th {
  font-weight: bold;
}

.ainewsposter-container .articles-table .article-row:nth-child(even) {
  background-color: #f9f9f9;
}

.ainewsposter-container .articles-table .article-url a {
  color: #06c;
  text-decoration: none;
}

.ainewsposter-container .articles-table .article-url a:hover {
  text-decoration: underline;
}
.ainewsposter-container .articles-table .article-status,
.ainewsposter-container .articles-table .status-th{
  text-align:center;
}

.ainewsposter-container .loader {
  margin-top: 15px;
  position: relative;
  width: 50px;
  height: 10px;
}

.ainewsposter-container .loader div {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #21759b;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.ainewsposter-container .loader div:nth-child(1) {
  left: 6px;
  animation: loader1 0.6s infinite;
}

.ainewsposter-container .loader div:nth-child(2) {
  left: 6px;
  animation: loader2 0.6s infinite;
}

.ainewsposter-container .loader div:nth-child(3) {
  left: 26px;
  animation: loader2 0.6s infinite;
}

.ainewsposter-container .loader div:nth-child(4) {
  left: 45px;
  animation: loader3 0.6s infinite;
}

.ainewsposter-container .edit-post-button {
  display: inline-block;
  padding: 6px 12px;
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-color: #0073aa;
  border: 1px solid transparent;
  border-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.ainewsposter-container .edit-post-button:hover,
.ainewsposter-container .edit-post-button:focus {
  background-color: #005177;
  border-color: #005177;
  color: #fff;
  text-decoration: none;
}

@keyframes loader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes loader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes loader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

