.serve-static-wrap {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.serve-static-wp-heading-inline {
  font-size: 24px;
  margin-bottom: 20px;
}

.serve-static-notification {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.serve-static-notification p {
  margin: 0;
  font-size: 18px;
}

.serve-static-success {
  color: green;
  background-color: #e6ffed;
  border: 1px solid #b6f0c1;
}

.serve-static-error {
  color: red;
  background-color: #ffe6e6;
  border: 1px solid #f0b6b6;
}

#serve-static-request-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

#serve-static-request-table th,
#serve-static-request-table td {
  width: 1000px;
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

#serve-static-request-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

#serve-static-request-status {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.action-button {
  display: block;
  margin: auto;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #0073aa;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.action-button:hover {
  background-color: #005177;
}

.action-button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  border: 1px solid #999999;
}

/* Progress Bar */
#serve-static-request-progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  height: 20px;
  margin-bottom: 10px;
}

#serve-static-request-progress-bar {
  height: 100%;
  background-color: #76c7c0; /* Adjust this to your desired progress bar color */
  width: 0;
  transition: width 0.4s ease;
}

#serve-static-request-progress-text {
  font-size: 18px;
}
