/* ---------- Weekly Schedule Header ---------- */
.vista-weekly-schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
}
.vista-weekly-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}
.vista-weekly-range {
    display: flex;
    align-items: center;
    gap: 1em;
}
.vista-weekly-arrow {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    padding: 0 10px;
    border: 1px solid #ccc;
    background: #eee;
    border-radius: 4px;
}

/* ---------- Weekly Day Buttons ---------- */
.vista-weekly-days-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 45px;
}
.vista-weekly-day-btn {
    border: 1px solid #ccc;
    background: #f9f9f9;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    min-width: 80px;
    transition: background 0.2s;
}
.vista-weekly-day-btn:hover,
.vista-weekly-day-btn.active {
    background: #222;
    color: #fff;
}
.vista-day-label {
    font-size: 14px;
    color: inherit;
}
.vista-day-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    text-transform: capitalize;
}

/* ---------- Station Filter (for List View) ---------- */
.vista-station-filter {
    margin-bottom: 20px;
}
.vista-station-btn {
    border: 1px solid #ccc;
    background: #f0f0f0;
    padding: 8px 12px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
}
.vista-station-btn.active,
.vista-station-btn:hover {
    background: #222;
    color: #fff;
}

/* ---------- List View Styles ---------- */
.vrts-show-list {
    margin: 0;
    padding: 0;
}
.vrts-show-list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.vrts-show-list-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}
.vrts-show-list-item a:hover {
    background-color: #f9f9f9;
}

/* List View Image (16:9) */
.vrts-show-list-image {
    width: 320px;
    height: 180px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}
.vrts-show-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* List View Text */
.vrts-show-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vrts-show-list-time {
    font-size: 14px;
    color: #555;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.vrts-show-list-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.vrts-show-list-schedule {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.2;
}

/* ---------- Slider Styles ---------- */
.vrts-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}
.vrts-show-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    background: transparent;
    scroll-behavior: smooth;
    flex-grow: 1;
    padding: 10px 10px 10px 0px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.vrts-show-slider::-webkit-scrollbar {
    display: none;
}

/* Slider Card: 100px tall, 289px wide */
.vrts-show-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    color: #333;
    padding: 10px;
    border: 1px solid #222;
    width: 289px;
    height: 100px;
    box-shadow: none;
    flex: 0 0 289px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.vrts-show-slide:hover {
    border-color: #002458;
    background: #FAFAFA;
}
.vrts-show-slide.on-air {
    border-color: #28a745;
}

/* Slider Image (16:9) within card */
.vrts-show-image {
    width: 142px;
    height: 80px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
}
.vrts-show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Text */
.vrts-show-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.vrts-show-time {
    font-size: 11px;
    color: #777;
    margin: 0;
    line-height: 1;
}
@keyframes vrts-pulsate {
    0% { box-shadow: 0 0 8px rgba(34,139,34,0.8); }
    50% { box-shadow: 0 0 35px rgba(34,139,34,1); }
    100% { box-shadow: 0 0 8px rgba(34,139,34,0.8); }
}
.vrts-on-air-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #228B22;
    border-radius: 50%;
    margin-right: 0;
    animation: vrts-pulsate 1.5s ease-in-out infinite;
}
.vrts-show-title {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0 0;
    line-height: 1;
    color: #222;
    display: flex;
    align-items: center;
}
.vrts-listen-live {
    line-height: 1;
}
.vrts-listen-live a {
    font-size: 12px;
    line-height: normal;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin: 0;
}
.vrts-slider-arrow {
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}
.vrts-slider-arrow.left,
.vrts-slider-arrow.right {
    user-select: none;
}
.vrts-no-on-air {
    padding: 10px;
    color: #222;
    font-size: 14px;
}

/* ---------- On-Air Card (Minimal Layout) ---------- */
.vrts-on-air-link {
    text-decoration: none;
    color: inherit;
}
.vrts-on-air-link:hover {
    text-decoration: none;
}
.vrts-on-air-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 0;
    background: none;
}
.vrts-on-air-image {
    width: 114px;
    height: 64px;
    overflow: hidden;
    flex-shrink: 0;
}
.vrts-on-air-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vrts-on-air-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
}
.vrts-on-air-time {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}
.vrts-on-air-title {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    margin: 0;
    line-height: 1.5;
}
.vrts-on-air-listen-live {
    line-height: 1;
    margin: 0;
}
.vrts-on-air-listen-live a {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}


/* ---------- Listen Live Icon ---------- */

.ll_footer_icon {
  margin: 0 auto;
  padding: 0;
  width: 50px;
  height: 50px;
}
.ll_footer_icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 0px !important;
}
.ll_footer_icon img:hover {
  opacity:0.85;
}
.ll_footer {
  text-align: center;
}
.ll_footer span {
  font-size: 11px;
  line-height: 1;
}
.ll_footer a, .ll_footer a:visited, .ll_footer a:link, .ll_footer a:active {
  color: #000;
} 


