body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

header {
  width: 100%;
  background-color: #333;
  padding: 10px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
}

.header-content span {
  color: white;
  font-size: 18px;
}

.main {
  margin-top: 60px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
  text-align: center; /* Center-align text in headers */
}

td {
  font-size: 14px;
}

table img {
  width: 40px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

td:first-child {
  display: flex;
  align-items: center;
  justify-content: left;
}

td:first-child img {
  margin-right: 10px;
}

input[type="text"] {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  padding: 8px 12px;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-size: 14px;
}

button:hover {
  background-color: #45a049;
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.logout-btn {
  background-color: #d9534f;
}

.logout-btn:hover {
  background-color: #c9302c;
}

.login-container {
  text-align: center;
  margin-top: 200px;
}

.envato-login-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #82b541;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.envato-login-btn:hover {
  background-color: #6b8d2e;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .header-content span {
    margin-bottom: 10px;
  }
}

/* .purchase-row {
  background-color: #efefef;
}

.active-row {
  background-color: #fff;
} */

.domain-input[readonly] {
  background: none;
  border: none;
}
