/**
 * FLOWW Media Day Manager - Frontend Styles
 * These styles are loaded on the public-facing site
 */

.floww-media-day-widget {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.floww-media-day-widget h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.floww-event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floww-event-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.floww-event-item:last-child {
    border-bottom: none;
}

.floww-event-link {
    display: block;
    text-decoration: none;
    color: #0073aa;
    font-weight: 500;
}

.floww-event-link:hover {
    color: #005177;
    text-decoration: underline;
}

.floww-event-date {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.floww-event-price {
    font-size: 0.9em;
    color: #d63638;
    font-weight: 600;
    margin-top: 5px;
}

.floww-event-price.free {
    color: #00a32a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floww-media-day-widget {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .floww-media-day-widget h3 {
        font-size: 1.1em;
    }
}