﻿/* Video Details - Uploader Info */
.tt-video-details__uploader {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tt-video-details__uploader-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.tt-video-details__uploader-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.tt-video-details__uploader-name {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.tt-video-details__uploader-subscribers {
    font-size: 12px;
    opacity: 0.7;
}

.tt-video-details__uploader-name {
    color: inherit;
}

.tt-video-details__subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    white-space: nowrap;
    background-color: #1a73e8;
    color: #ffffff;
}

.tt-video-details__subscribe-btn.active {
    opacity: 0.75;
}
