/*
Theme Name: UltimaTube Child
Theme URI: https://desipussy.in/
Description: Secure Child Theme for UltimaTube featuring secure dynamic iframe fullscreen filters and alphabetical actor indexes.
Author: Matt & Dsypsy Team
Author URI: https://desipussy.in
Template: ultimatube
Version: 1.0.0
Text Domain: ultimatube-child
*/

/*==================================================
ACTORS ALPHABETICAL DIRECTORY NAVIGATION
==================================================*/
.actors-alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    clear: both;
}

.actors-alphabet-filter li {
    display: inline-block;
    margin: 0;
}

.actors-alphabet-filter li a {
    display: block;
    padding: 8px 14px;
    background: #333 !important;
    color: #fff !important;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    border: none !important;
}

.actors-alphabet-filter li a:hover,
.actors-alphabet-filter li.active a {
    background: #555 !important;
    color: #fff !important;
    transform: scale(1.05);
}