/* Form styling */

.form-container {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-of-type {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--input-border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1); /* Optional focus effect */
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--text-color);
}

.btn-primary:hover {
  background: var(--btn-primary-bg-hover);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-color);
}

.btn-secondary:hover {
  background: var(--border-secondary);
}

/* Dark theme adjustments */
/* Removed styles previously scoped to body.dark-theme */

/* Album videos section */
.album-videos {
  max-width: 800px;
  margin: 3rem auto;
}

.album-videos h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-item {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.video-info {
  flex: 1;
}

.video-item h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-color);
  font-size: 1.1rem;
}

.video-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.video-actions {
  white-space: nowrap;
}

.btn-link {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  background: var(--bg-tertiary);
  color: var(--link-hover);
}

@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .video-item {
    flex-direction: column;
  }

  .video-actions {
    width: 100%;
  }

  .btn-link {
    display: block;
    width: 100%;
    text-align: center;
  }
}
