/* my_channels.css — YouTube 관리 앱 공통 스타일 */

/* 탭 네비게이션 */
.tab-active {
    border-bottom: 2px solid #3B82F6;
    color: #3B82F6;
    font-weight: 600;
}

/* 폴더 아이템 */
.folder-item:hover {
    background-color: #F9FAFB;
}

/* 채널/클립 카드 */
.channel-card {
    transition: all 0.2s;
}

.channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 배지 */
.badge {
    @apply px-2 py-1 text-xs font-semibold rounded-full;
}

/* 로딩 스피너 */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3B82F6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
