/* Admin page specific styles */
.custom-file-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.custom-file-input-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.custom-file-input-label {
  display: inline-block;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  color: #374151;
  font-weight: 500;
  font-size: 0.875rem;
  z-index: 1;
}

.custom-file-input-text {
  margin-left: 15px;
  color: #6b7280;
}

.custom-file-input-label:hover {
  background: #e5e7eb;
}

/* Fix for feather icons */
[data-feather] {
  display: inline-block;
  vertical-align: -0.125em;
}

/* Ensure minimum height for content area */
.admin-content {
  min-height: 60vh;
}

/* Fix for table layout */
.episode-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.episode-table th,
.episode-table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.episode-table tbody tr:hover {
  background-color: #f9fafb;
}

