/* ----------------------------------------------
   TikTok Author Box – Clean CSS
   No external dependencies, no browser metadata
---------------------------------------------- */

#tiktok-author-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    color: #111;
    font-family: inherit;
    max-width: 460px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Avatar */
.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    object-fit: cover;
}

/* Main content */
.author-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-bio {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

/* Actions row */
.author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* TikTok-style circular buttons */
.tiktok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.tiktok-btn:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* Heart button */
.tab-heart-btn {
    width: auto;
    padding: 0 14px;
    gap: 6px;
    font-size: 0.9rem;
}

.tab-heart-icon {
    font-size: 1rem;
}

/* Social icons row */
.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Vertical layout option */
.tab-layout-vertical .social-row {
    flex-direction: column;
    align-items: flex-start;
}

/* Neon glow option */
.tab-neon-glow .tiktok-btn:hover {
    box-shadow:
        0 0 12px rgba(255, 0, 120, 0.7),
        0 0 24px rgba(0, 255, 255, 0.5);
}

/* PNG icon styling */
.icon-img {
    width: 22px;
    height: 22px;
    opacity: 0.9;
    transition: opacity .2s ease;
}

.tiktok-btn:hover .icon-img {
    opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
    #tiktok-author-box {
        max-width: 100%;
    }
}
