/* Electric Core Frontend Styles */
.electric-core-widget {
    position: relative;
}

.electric-core-button {
    display: inline-block;
    padding: 12px 24px;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.electric-core-button:hover {
    background: #005a87;
    transform: translateY(-2px);
}
.muhlenberg-sports-rss {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    .muhlenberg-rss-item {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: box-shadow 0.3s ease;
    }

    .muhlenberg-rss-item:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

    .event-datetime {
        margin-bottom: 15px;
        text-align: center;
    }

    .event-date {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .event-time {
        display: block;
        font-size: 14px;
        color: #666;
    }

    .teams-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .team {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        text-align: center;
    }

    .team-logo {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 8px;
        border-radius: 4px;
    }

    .team-name {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        line-height: 1.3;
    }

    .vs-at-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
    }

    .vs-at {
        background: #007cba;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .muhlenberg-team .team-name {
        color: #dc143c; /* Muhlenberg red */
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .teams-container {
            flex-direction: column;
            gap: 10px;
        }
        
        .team {
            flex-direction: row;
            gap: 10px;
        }
        
        .team-logo {
            margin-bottom: 0;
        }
        
        .vs-at-indicator {
            order: -1;
        }
    }

    .podcasts-rss-feed {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    .podcast-feed-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e0e0e0;
    }

    .feed-title {
        margin: 0;
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .podcast-item {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        transition: box-shadow 0.3s ease;
    }

    .podcast-item:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .podcast-title {
        margin: 0 0 8px 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        line-height: 1.4;
    }

    .podcast-date {
        font-size: 14px;
        color: #666;
        margin-bottom: 12px;
    }

    .podcast-description {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .podcast-actions {
        display: flex;
        align-items: center;
    }

    .podcast-play-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #007cba;
        color: white;
        padding: 10px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .podcast-play-btn:hover {
        background: #005a87;
        color: white;
        text-decoration: none;
    }

    .play-icon {
        font-size: 12px;
        line-height: 1;
    }

    @media (max-width: 768px) {
        .podcast-item {
            padding: 15px;
        }
        
        .podcast-title {
            font-size: 16px;
        }
        
        .feed-title {
            font-size: 20px;
        }
    }