.brs-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    direction: rtl;
    font-family: inherit;
    max-width: 600px;
    margin: 20px auto;
}

.brs-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 15px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.brs-btn {
    background: #f8f9fa;
    border: 1px solid var(--rico-color-10);
    color: #555;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding:0;
}

.brs-btn:disabled { opacity: 0.3; cursor: not-allowed; background: #f8f9fa; color: #aaa; border-color: #e9ecef; transform: none; }

.brs-viewport {
    flex-grow: 1;
    height: 345px; 
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.brs-track {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.brs-report-card {
    background: #fff;
    border: 1px solid var(--rico-color-10);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    height: 165px; 
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.brs-report-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.06); }

.brs-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--rico-color-10);
}

.brs-user-info { display: flex; flex-direction: column; gap: 5px; }
.brs-user-name {
    font-weight: bold;
    font-size: 15px;
    color: var(--rico-color-6);
}
.brs-page-name {
    font-size: 11px;
    color: var(--rico-color-2);
    background: var(--rico-color-3);
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.brs-status-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.brs-status-badge.in_queue { color: #f8b033; background: #fff7ea; }
.brs-status-badge.in_progress { color: #c98004; background: #fff7ea; }
.brs-status-badge.done { color: #00793d; background: #c6ffe3; }
.brs-status-badge svg { width: 16px; height: 16px; }

.brs-report-content
{
    color: var(--rico-color-2);
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}