/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* PlayHistory - Custom Styles */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Login page full height centering */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #e9ecef;
}

/* Wrapper fills full height */
.wrapper {
  min-height: 100vh;
}

/* Timeline custom styles */
.timeline > div > .timeline-item {
  border-left: 2px solid #dee2e6;
}

.timeline-podcast-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 10px;
  flex-shrink: 0;
}

.timeline-podcast-image-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

.episode-card {
  transition: box-shadow 0.2s;
}

.episode-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.progress-bar-wrapper {
  height: 4px;
  background: #dee2e6;
  border-radius: 2px;
  margin-top: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Podcast website link */
.podcast-website-link {
  font-size: 0.8rem;
  color: #6c757d;
  text-decoration: none;
}

.podcast-website-link:hover {
  color: #3490dc;
  text-decoration: underline;
}

/* Star indicator */
.star-indicator {
  color: #f39c12;
  font-size: 0.9rem;
}

/* Stats cards */
.stats-card {
  border-left: 4px solid;
  transition: transform 0.2s;
}

.stats-card:hover {
  transform: translateY(-2px);
}

/* Episode description */
.episode-description {
  font-size: 0.85rem;
  color: #6c757d;
  max-height: 60px;
  overflow: hidden;
  position: relative;
}

.episode-description.expanded {
  max-height: none;
}

/* Sync modal */
.sync-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Podcast detail badge */
.podcast-detail-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
}

/* ScrollBar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

