/**
 * Country Highlighter Styles
 * Стили для подсветки страны пользователя
 */

.highlighted-user-country {
    background: #4c49ff;
    color: #fff;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
    display: inline;
    position: relative;
    transition: all 0.3s ease;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.highlighted-user-country:hover {
    background: #6149ff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}