/* Kiểu dáng chung cho các thành phần */
.cls-user-title {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border: 1px solid #ddd;
}

.cls-title-image img {
    height: 16px; /* Điều chỉnh kích thước hình ảnh */
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.cls-user-level {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 300px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.cls-user-level strong {
    color: #555;
}

/* Kiểu dáng cho thanh tiến trình */
.cls-progress-bar-container {
    background-color: #e9ecef;
    border-radius: 5px;
    height: 10px;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 10px;
}

.cls-progress-bar {
    background-color: #007bff;
    height: 100%;
    transition: width 0.4s ease;
}