/* ============================= */
/* Butoni LIVE në Share Buttons */
/* ============================= */

.mh-share-buttons .mh-live-share {
    display: inline-block;
    margin-left: 6px;
    text-decoration: none;
}

.mh-share-buttons .mh-live-share .mh-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    background: #ff0000;
    color: #fff;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.mh-share-buttons .mh-live-share .mh-share-button:hover {
    background: #cc0000;
    transform: translateY(-1px);
    color: #fff;
}

.mh-share-buttons .mh-live-share i.fa-play-circle {
    margin-right: 6px;
    font-size: 14px;
}

/* ====================================== */
/* Opsional: Butoni LIVE në Titull (Top) */
/* ====================================== */

.title-live-button {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    padding: 6px 15px;
    background: rgba(255, 0, 0, 0.15);
    color: red;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid rgba(255, 0, 0, 0.3);
    font-size: 0.75em;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
}

.title-live-button:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
    color: white;
}

.live-icon-title {
    position: relative;
    margin-right: 8px;
    font-size: 8px;
    color: #FF0000;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-icon-title::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #FF0000;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.live-icon-title::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    animation: pulse-inner 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.6); opacity: 0.8; }
    70% { opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes pulse-inner {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}
.mh-share-buttons .mh-live-share .mh-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;         /* Gjerësia fikse */
    height: 36px;        /* Lartësia fikse - pak më e lartë për tekstin */
    padding: 0 10px;     /* Padding horizontal */
    font-size: 13px;
    font-weight: 600;
    background: #ff0000;
    color: #fff;
    border-radius: 0px;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.mh-share-buttons .mh-live-share .mh-share-button:hover {
    background: #cc0000;
    transform: translateY(-1px);
    color: #fff;
}
@media (max-width: 768px) {
    .title-live-button {
        padding: 5px 12px;
        font-size: 0.65em;
    }

    .live-icon-title {
        margin-right: 6px;
    }
}