/* Admin song control buttons */

/* Base style for small square buttons */
.admin-disqualify-btn,
.admin-edit-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  /* Mobile touch fixes */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

/* Expand touch area on mobile */
@media (max-width: 768px) {
  .admin-disqualify-btn,
  .admin-edit-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
    /* Ensure button is above other elements */
    z-index: 10;
  }
}

/* Red neon X (disqualify) */
.admin-x-btn {
  color: #ff3366;
  text-shadow: 0 0 8px rgba(255, 51, 102, 0.8),
               0 0 12px rgba(255, 51, 102, 0.6);
  border: 1px solid rgba(255, 51, 102, 0.4);
}

.admin-x-btn:hover {
  color: #ff0044;
  background: rgba(255, 51, 102, 0.1);
  text-shadow: 0 0 12px rgba(255, 51, 102, 1),
               0 0 20px rgba(255, 51, 102, 0.8);
  border-color: #ff3366;
  transform: scale(1.05);
}

/* Green checkmark (re-enable) */
.admin-enable-btn {
  color: #16f1d3;
  text-shadow: 0 0 8px rgba(22, 241, 211, 0.8),
               0 0 12px rgba(22, 241, 211, 0.6);
  border: 1px solid rgba(22, 241, 211, 0.4);
}

.admin-enable-btn:hover {
  color: #00ff99;
  background: rgba(22, 241, 211, 0.1);
  text-shadow: 0 0 12px rgba(22, 241, 211, 1),
               0 0 20px rgba(22, 241, 211, 0.8);
  border-color: #16f1d3;
  transform: scale(1.05);
}

/* Cyan/teal edit button */
.admin-edit-btn {
  color: #16f1d3;
  text-shadow: 0 0 8px rgba(22, 241, 211, 0.8),
               0 0 12px rgba(22, 241, 211, 0.6);
  border: 1px solid rgba(22, 241, 211, 0.4);
}

.admin-edit-btn:hover {
  color: #00ffcc;
  background: rgba(22, 241, 211, 0.1);
  text-shadow: 0 0 12px rgba(22, 241, 211, 1),
               0 0 20px rgba(22, 241, 211, 0.8);
  border-color: #16f1d3;
  transform: scale(1.05);
}

/* Inline editing input */
.song-title-editing {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #16f1d3;
  background: rgba(22, 241, 211, 0.05);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  min-width: 200px;
}

.song-title-editing:focus {
  outline: none;
  border-color: #16f1d3;
  box-shadow: 0 0 8px rgba(22, 241, 211, 0.5);
}

