/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  margin: 0;
  background: #f6f7fb;
  color: #111827;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.recordings-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}

.recordings-header h1 {
  margin-bottom: 0.5rem;
}

.recordings-root {
  margin: 0;
  color: #4b5563;
}

.recordings-warning {
  padding: 0.75rem;
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
}

.recordings-empty {
  color: #4b5563;
}

.recordings-list {
  margin-top: 1rem;
}

.recordings-date-selector,
.recordings-list {
  margin-bottom: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem;
}

.date-form-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.date-form-row label {
  font-weight: 600;
}

.date-form-row select,
.date-form-row input[type="date"],
.date-form-row input[type="submit"] {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  background: #fff;
}

.date-form-row input[type="submit"] {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  cursor: pointer;
}

.recordings-list h2 {
  margin: 0 0 0.25rem;
}

.recordings-items {
  margin: 0;
  padding-left: 1.25rem;
}

.recordings-items li {
  margin: 0.45rem 0;
}

.recordings-items a {
  color: #1d4ed8;
  text-decoration: none;
}

.recordings-items a:hover {
  text-decoration: underline;
}

.recordings-items .meta {
  margin-left: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.count {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.jobs-manager-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.2);
}

.jobs-manager-button:hover {
  background: #1f2937;
}
