
body {
  width: 1280px;
  margin: 0 auto;
  font-family: "Segoe UI", "ヒラギノ角ゴ ProN W3", sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #00aaff;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

.nav-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

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

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

th {
  background: #eee;
}

.status {
  font-weight: bold;
}

.notify-options {
  text-align: center;
  margin: 20px 0;
}

form input, form button {
  margin: 5px;
  padding: 8px;
  font-size: 14px;
}

form button {
  background: #00aaff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

form button:hover {
  background: #008fcc;
}

#domain-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
}
#domain-table th, #domain-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

#log-box {
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  height: 200px;
  overflow-y: auto;
}

/* 強制的に表外のチェックボックスを非表示にする */
body > input[type="checkbox"] {
  display: none !important;
}


/* 管理画面のテーブル行ホバー用ハイライト */
body:has(main) #domain-table tbody tr:hover {
  background-color: #f0f8ff;
}


/* ドラッグ可能であることを示すカーソル */
#domain-table tbody tr {
  cursor: move;
}
