/*your custom css goes here*/

/* Admin Backend TikTok SVG Icon Styling */
.input-group-text svg {
    width: 20px;
    height: 20px;
    fill: #575b6a;
    transition: fill 0.3s ease;
}

.input-group-text:hover svg {
    fill: #000;
}

/* jsSocials TikTok Button - Matching other share buttons */
.jssocials-share-tiktok {
    display: inline-block !important;
    vertical-align: top;
    margin: 0.3em 0.6em 0.3em 0 !important;
}

.jssocials-share-tiktok a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    background: #000000 !important;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 2.5em;
    height: 2.5em;
}

.jssocials-share-tiktok a svg {
    width: 1.5em;
    height: 1.5em;
    fill: #fff;
    transition: fill 0.3s ease;
}

.jssocials-share-tiktok a:hover {
    background: #25F4EE !important;
    color: #000;
    transform: scale(1.1);
}

.jssocials-share-tiktok a:hover svg {
    fill: #000;
}

/* Footer Social Links TikTok Icon Styling with SVG */
.social .tiktok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    transition: all 0.3s ease;
}

.social .tiktok svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.social .tiktok:hover {
    background: #25F4EE;
    color: #000;
    transform: scale(1.1);
}

.social .tiktok:hover svg {
    fill: #000;
} 