/* Modern Podcast Buttons and Controls */

/* Podcast Glass Effect */
.podcast-glass-effect {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.podcast-glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    z-index: 1;
    animation: shimmer 8s ease-in-out infinite;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: none;
    z-index: 1;
}

.podcast-glass-effect img {
    mix-blend-mode: overlay;
    opacity: 0.8;
    z-index: 0;
    border-radius: 20px;
}

.podcast-glass-effect img.f-d-shadow {
    z-index: 2;
    mix-blend-mode: normal;
    opacity: 1;
}

/* Episode Play Button */
.play-button {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
    z-index: 0;
}

.play-button:hover::before {
    opacity: 1;
}

.play-button:hover {
    background: var(--color6);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

.play-button:active {
    transform: translateY(-2px) scale(1.02);
}

.play-button ion-icon {
    position: relative;
    font-size: 1.2rem;
    margin-left: 0.25rem;
    color: rgba(226, 232, 240, 0.9);
    transition: all 0.3s ease;
    z-index: 1;
}

.play-button:hover ion-icon {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Download Button */
.download-button {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
    z-index: 0;
}

.download-button:hover::before {
    opacity: 1;
}

.download-button:hover {
    background: var(--color6);
    border-color: rgba(59, 130, 246, 0.6);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

.download-button:active {
    transform: translateY(-2px) scale(1.02);
}

.download-button ion-icon {
    position: relative;
    font-size: 1.2rem;
    margin-left: 0.25rem;
    color: rgba(226, 232, 240, 0.9);
    transition: all 0.3s ease;
    z-index: 1;
}

.download-button:hover ion-icon {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Series Navigation Buttons */
.message-series {
    cursor: pointer;
    padding: 0.5em;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: visible; /* Changed from overflow: hidden */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-series::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: 0; /* Ensure this is below the icon */
}

.message-series:hover::before {
    opacity: 1;
}

.message-series:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

.message-series:active {
    transform: translateY(-2px) scale(1.02);
}

.message-series ion-icon {
    position: relative;
    font-size: 2.5em;
    color: rgba(226, 232, 240, 0.9);
    transition: all 0.3s ease;
    z-index: 5;
    display: block !important;
    pointer-events: none; /* Ensures the icon doesn't interfere with button clicks */
}

.message-series:hover ion-icon {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.play-button p,
.download-button p {
    color: var(--color4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.play-button:hover p,
.download-button:hover p {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Episode Statistics */
.episode-stats {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    font-size: 0.85rem;
}

.play-count,
.download-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.5rem;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.play-count ion-icon,
.download-count ion-icon {
    font-size: 0.9rem;
}

/* Episode Meta Information */
.episode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.episode-number,
.episode-series,
.episode-date {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.episode-number {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.episode-series {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.episode-date {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(226, 232, 240, 0.8);
}

/* Audio Control Buttons in Modal */
.audios .msg ion-icon {
    font-size: 2.5em;
    border-radius: 50%;
    padding: 0.3em;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audios .msg ion-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.audios .msg ion-icon:hover::before {
    width: 100%;
    height: 100%;
}

.audios .msg ion-icon:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.audios .msg ion-icon:active {
    transform: scale(1.05);
}

/* Action Icons */
.actions ion-icon {
    padding: 0.4rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.actions ion-icon:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Form Buttons */
.form button {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    border-radius: 25px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.form button:hover::before {
    left: 100%;
}

.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

/* Book Buttons */
.book button {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.book button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.book button:hover::before {
    left: 100%;
}

.book button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857 0%, #0f766e 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .play-button,
    .download-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .message-series {
        width: 5em;
        height: 5em;
        padding: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .message-series ion-icon {
        font-size: 2em;
        position: relative;
        display: inline-block;
    }
    
    .episode-meta {
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .episode-number,
    .episode-series,
    .episode-date {
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .play-button,
    .download-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .play-button p,
    .download-button p {
        font-size: 0.75rem;
        margin: 0;
    }
    
    .message-series {
        width: 1em;
        height: 1em;
        padding: 0.25em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .message-series ion-icon {
        font-size: 1.8em;
        position: relative;
        display: inline-block;
    }
    
    .episode-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .play-button,
    .download-button,
    .message-series,
    .audios .msg ion-icon,
    .actions ion-icon,
    .form button,
    .book button {
        transition: none;
        animation: none;
    }
    
    .play-button:hover,
    .download-button:hover,
    .message-series:hover,
    .audios .msg ion-icon:hover {
        transform: none;
    }
    
    .play-button::before,
    .download-button::before,
    .message-series::before,
    .form button::before,
    .book button::before {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .play-button,
    .download-button,
    .message-series,
    .audios .msg ion-icon {
        border-width: 3px;
    }
    
    .episode-number,
    .episode-series,
    .episode-date,
    .play-count,
    .download-count {
        border-width: 2px;
        font-weight: 700;
    }
}

/* Podcast Player Controls */
.podcast-player {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.podcast-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    animation: shimmer 8s ease-in-out infinite;
}

.podcast-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1;
    position: relative;
}

.podcast-controls button,
.podcast-controls ion-icon {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    padding: 0.75rem;
    color: #3b82f6;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#play {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border-color: rgba(59, 130, 246, 0.5);
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.podcast-controls button:hover,
.podcast-controls ion-icon:hover {
    background: rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.6);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

#play:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.playback-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 1rem;
    z-index: 1;
    position: relative;
}

.speed-control {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 3rem;
}

.speed-control:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 150px;
}

.volume-control ion-icon {
    color: rgba(226, 232, 240, 0.8);
    font-size: 1.2rem;
}

.volume-control input[type="range"] {
    flex: 1;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.volume-control input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.volume-control input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Close button for player */
.close ion-icon {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    padding: 0.5rem;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close ion-icon:hover {
    background: rgba(239, 68, 68, 0.4);
    border-color: rgba(239, 68, 68, 0.6);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Loading animation */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin: 1rem 0;
}

.loader span {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    animation: loader 1.2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes loader {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Waveform Container */
.waveform-container {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    width: 100%;
}
.waveform-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    animation: shimmer 8s ease-in-out infinite;
}

#waveform {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    position: relative;
}

/* Time display */
.time-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    color: rgba(226, 232, 240, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

.current-time, .total-time {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    min-width: 3rem;
    text-align: center;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    margin: 1rem 0;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
    transition: width 0.1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Audio controls grid */
.audio-controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    z-index: 1;
    position: relative;
}

.control-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.control-section h4 {
    color: rgba(226, 232, 240, 0.9);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive design for waveform */
@media (max-width: 768px) {
    .waveform-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .audio-controls-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .podcast-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-display {
        font-size: 0.8rem;
    }
    
    .current-time, .total-time {
        padding: 0.3rem 0.6rem;
        min-width: 2.5rem;
    }
}

@media (max-width: 480px) {
    .podcast-controls button,
    .podcast-controls ion-icon {
        width: 1rem;
        height: 1rem;
        font-size: 1.2rem;
    }
    
    #play {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.8rem;
    }
}
