.my-reports-page {
    width: 100%;
}

.my-reports-builder-link {
    white-space: nowrap;
}

.my-reports-library-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    position: sticky;
    top: 16px;
}

.my-reports-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.my-reports-panel-title {
    font-weight: 700;
    color: var(--text);
}

.my-reports-count {
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.my-reports-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    max-height: calc(100vh - 260px);
    overflow-y: auto;
}

.my-reports-item.btn {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    text-align: left;
    box-shadow: none;
}

.my-reports-item.btn-light {
    background: var(--surface);
    color: var(--text);
}

.my-reports-item.btn-light:hover {
    border-color: var(--brand-accent);
    background: #f2faf8;
}

.my-reports-item.is-selected {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}

.my-reports-item-name {
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.my-reports-item-date {
    margin-top: 3px;
    font-size: 0.74rem;
    opacity: 0.72;
}

.my-reports-empty {
    padding: 30px 18px;
    text-align: center;
}

.my-reports-empty > .bi {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-accent);
    font-size: 1.8rem;
}

.my-reports-empty-title {
    margin-bottom: 4px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .my-reports-library-panel {
        position: static;
    }

    .my-reports-list {
        max-height: 280px;
    }
}
