/* Schedule Page Specific Styles */
.schedule-page {
  padding: 2rem 0;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--accent-green);
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--text-secondary);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.schedule-day {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-header {
  padding: 1rem;
  background: var(--accent-red);
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
}

.schedule-animes {
  padding: 1rem;
  max-height: 500px;
  overflow-y: auto;
}

.schedule-anime {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-anime:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.schedule-anime-img {
  width: 50px;
  height: 70px;
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.schedule-anime-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-anime-info {
  flex-grow: 1;
}

.schedule-anime-title {
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.schedule-anime-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.empty-schedule {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-anime-title {
    font-size: 0.85rem;
  }
}
