

.reports-browser-container {
    width: 1200px;
    height: 500px;
    display: flex;
#    border: 1px solid #534e4f;
    background: #1a1a1a;
    overflow: hidden;
}

.reports-list {
    width: 33%;
    height: 100%;
    overflow-y: auto;
#    border-right: 2px solid #534e4f;
    background: #1a1a1a;
}

.report-item {
    padding: 20px;
#    border-bottom: 1px solid #534e4f;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.report-item:hover {
    background: #040203;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: scale(1.1) ;

}

.report-item.active {
    background: #21201e;
#    border-left: 1px solid #ecdbae;
}


.report-info {
    flex: 1;
    min-width: 0;
}

.report-title {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f3eee7;
    line-height: 1.2rem;
}

.report-date {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #ffcc33;
}

.disclaim {
    margin-top: 15px;
    font-size: 0.5rem;
    color: #736e70;
}

.reports-detail {
    width: 67%;
    height: 100%;
    padding: 30px;
    overflow-y: auto;
    background: #1a1a1a;
    position: relative;
    
}

.detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    text-align: center;
    font-style: italic;
    font-size: 1rem;
}

.detail-content {
    display: none;
    animation: fadeIn 0.3s ease;
    font-size: 1.1rem;
    color: #f3eee7;
    line-height: 1.3rem;
}

.detail-content.active {
    display: block;
}

.detail-content h2 {
    margin-top: 0;
    color: #f3eee7;
    font-size: 1.1rem;
}

.detail-content p {
    font-size: 1rem;
    line-height: 1.1rem;
    color: #eabcae;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar Styling */
.reports-liste::-webkit-scrollbar,
.reports-detail::-webkit-scrollbar {
    width: 8px;
    background: #373436;
}

.reports-liste::-webkit-scrollbar-track,
.reports-detail::-webkit-scrollbar-track {
    background: #040203;
}

.reports-liste::-webkit-scrollbar-thumb,
.reports-detail::-webkit-scrollbar-thumb {
    background: #373436;
    border-radius: 2px;
}

.reports-liste::-webkit-scrollbar-thumb:hover,
.reports-detail::-webkit-scrollbar-thumb:hover {
    background: #040203;
}

