table{
    margin: 10px 0;
}

.user-counter-widget {
    background: #f26400;
    padding:  20px 15px;
    font-family: Arial, sans-serif;
    max-width: 200px;
    border-radius: 10px;
}

.user-counter-table td:first-child {
    width: 70%; /* или фиксированная ширина */
    min-width: 85px;
}

.user-counter-table td:last-child {
    width: 30%;
    min-width: 65px;
}

.counter-title{
    color: #fff!important;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}

.user-counter-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.user-counter-table tr {
    border-bottom: 1px solid #eee;
}

.user-counter-table tr:last-child {
    border-bottom: none;
}

.user-counter-table td {
    padding: 5px;
    font-size: 10px;
}

.uc-title {
    color: #fff;
    font-weight: bold;
    width: 40%;
}

.uc-value {
    color: #c1c1c1;
    font-weight: bold;
    text-align: right;
}

.uc-online .uc-value {
    color: #e74c3c;
}

.uc-total .uc-value {
    color: #fff;
}

.uc-chart-link {
    margin-top: 15px;
    text-align: center;
}

.uc-show-chart {
    background: #3498db;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
}

.uc-show-chart:hover {
    background: #2980b9;
}

