/* Стили для голосования за комментарии к голосованию */

.vote-wrap {
    width: 100%;
    text-align: center;
}

.vote-wrap a {
    display: block;
    text-decoration: none;
    color: #999;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s;
}

.vote-wrap a:hover {
    color: #666;
    text-decoration: none;
}

.vote-wrap a.active {
    color: #337ab7 !important;
}

.vote-wrap a.comment-link-thumbs-up.active {
    color: #5cb85c !important; /* Зеленый для лайка */
}

.vote-wrap a.comment-link-thumbs-down.active {
    color: #d9534f !important; /* Красный для дизлайка */
}

.vote-wrap a.my {
    color: #ccc !important;
    cursor: not-allowed;
}

.vote-wrap a.disabled {
    color: #ccc !important;
    cursor: not-allowed;
    pointer-events: none;
}

.vote-wrap .small {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin: 2px 0;
    min-height: 16px;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .vote-wrap a {
        font-size: 14px;
    }
    
    .vote-wrap .small {
        font-size: 11px;
    }
}
