.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

/* 검색 영역 */
.video__search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.search-select,
.search-input {
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #1f1f1f;
  color: #eee;
}

.search-input {
  flex: 1;
  min-width: 200px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: #eee;
  background-color: #1a1a1a;
  border: 1px solid #333;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid #333;
  text-align: left;
}

.table th {
  background-color: #222;
  font-weight: bold;
  color: #2ecc71;
}

.table tr:hover {
  background-color: #2a2a2a;
}

.video__keyword-btn {
  display: inline-block;
  margin: 2px 4px 0 0;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 12px;
  background-color: #2ecc71;
  color: #111;
  border: none;
  cursor: default;
}

.button-group {
  text-align: right;
}

.button {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 6px;
  background-color: #2ecc71;
  color: #111;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
}

.button:hover {
  background-color: #27c56c;
}
