/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 02 2025 | 17:10:20 */
.tvshow-card-wrapper {
  margin-bottom: 2rem;
}

.tvshow-card-wrapper .tvshow-card {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(85, 85, 85, 0.08);
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  gap: 1.2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 100px;
}

.tvshow-card-wrapper .tvshow-card:hover {
  box-shadow: 0 5px 20px rgba(85,85,85,0.16);
  transform: translateY(-2px) scale(1.015);
}

.tvshow-card-wrapper .tvshow-card__logo {
  flex: 0 0 80px;          /* Increased size */
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;      /* Slightly less round for variation */
  background: #f8f9fa;
  box-shadow: 0 1px 6px rgba(85,85,85,0.1);
  overflow: hidden;
}

.tvshow-card-wrapper .tvshow-card__logo img {
  max-width: 72px;          /* Larger logo image */
  max-height: 72px;
  object-fit: contain;
}

.tvshow-card-wrapper .tvshow-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tvshow-card-wrapper .tvshow-card__title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.25rem;
  margin: 0;
  color: #2d2d2d;
  font-weight: 700;
  line-height: 1.2;
}

.tvshow-card-wrapper .tvshow-card__details {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tvshow-card-wrapper .tvshow-card__date {
  font-weight: 600;
  color: #2979ff;
}

.tvshow-card-wrapper .tvshow-card__time {
  font-size: 1rem;
  color: #444;
}

.tvshow-card-wrapper .tvshow-card__status {
  font-size: 1.05rem;
  font-weight: 600;
  color: #388e3c;
  margin-bottom: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.tvshow-card-wrapper .tvshow-card__status .ended {
  color: #d32f2f;
}

.tvshow-card-wrapper .tvshow-card__status .live {
  color: #388e3c;
}

.tvshow-card-wrapper .tvshow-card__progress-wrap {
  width: 100%;
  margin-top: 0.3rem;
}

.tvshow-card-wrapper .tvshow-card__progress-bar-bg {
  background: #e0e0e0;
  border-radius: 8px;
  height: 8px;
  width: 100%;
  overflow: hidden;
}

.tvshow-card-wrapper .tvshow-card__progress-bar {
  height: 100%;
  background: linear-gradient(90deg,#2979ff 70%,#7c4dff 100%);
  transition: width 0.5s;
  border-radius: 8px;
  width: 0;
  min-width: 4px;
}

/* Responsive – center all for mobile */
@media (max-width: 700px) {
  .tvshow-card-wrapper .tvshow-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.7rem 0.6rem;
    gap: 0.7rem;
    min-height: 0;
  }
  .tvshow-card-wrapper .tvshow-card__info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .tvshow-card-wrapper .tvshow-card__details,
  .tvshow-card-wrapper .tvshow-card__status,
  .tvshow-card-wrapper .tvshow-card__progress-wrap {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .tvshow-card-wrapper .tvshow-card__info {
    gap: 0.4rem;
  }
  .tvshow-card-wrapper .tvshow-card__logo {
    width: 60px;
    height: 60px;
  }
  .tvshow-card-wrapper .tvshow-card__logo img {
    max-width: 54px;
    max-height: 54px;
  }
}
