/**
 * Frontend Styles for External Event Badges
 * Yoga Agenda Sync Plugin
 */

/* External event badge */
.yas-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    width: fit-content;
}

.yas-badge-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.yas-badge-text {
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .yas-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .yas-badge-icon {
        width: 12px;
        height: 12px;
    }
}

/* Integration with existing agenda event styles */
.ya-event-content .yas-badge {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Alternative badge style (more subtle) - uncomment to use */
/*
.yas-badge {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}
*/

/* Badge hover effect */
.yas-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
