File: /var/www/html/wp-content/plugins/bsx/ass/css/camp-tabs.css
.ctab-browser-container {
width: 1240px;
height: 500px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
gap: 5px;
background: #1a1a1a;
overflow: auto;
}
.ctab-sidetext-container {
width: 34%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
gap: 5px;
padding: 8px;
justify-items: start;
}
ctab-browser-container p:empty {
display: none;
}
.ctab-sidetext-item {
display: flex;
justify-content: space-between;
padding: 8px 10px;
font-size: 1.2rem;
line-height: 1.3rem;
}
.st-label {
text-align: left;
}
.st-val {
font-weight: bold;
text-align: right;
margin-right: 15px;
}
.ctab-chart-container {
display: flex;
flex-wrap: wrap;
flex-direction: column;
width: 66%;
height: 100%;
padding: 10px;
background: #1a1a1a;
position: relative;
animation: fadeIn 0.3s ease;
}
#
#ctab-item:hover {
# background: #21201e;
# box-shadow: 0 2px 8px rgba(0,0,0,0.1);
# transform: scale(1.05) ;
#
#
#
#ctab-item.active {
# background: #21201e;
# border-left: 1px solid #ecdbae;
#
#
#
#
#ctab-info {
# flex: none;
# min-width: 0;
#
#
##########################################################################################
.reports-browser-container {
width: 1200px;
height: 500px;
display: flex;
background: #1a1a1a;
overflow: hidden;
}
.reports-list {
display: flex;
flex-direction: column;
width: 27%;
height: 100%; /* vorher 80% */
gap: 5px;
overflow-y: auto; /* nur scrollbar wenn wirklich nötig */
padding: 8px; /* optionaler Abstand zum Rand */
justify-items: start;
box-sizing: border-box;
}
.report-item {
padding: 8px 12px;
# border-bottom: 1px solid #343337;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
cursor: pointer;
background: #343337;
color: #999;
border: 1px solid #534e4f;
border-radius: 6px;
overflow-x: hidden;
}
.report-item:hover {
background: #21201e;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transform: scale(1.05) ;
}
.report-item.active {
background: #21201e;
# border-left: 1px solid #ecdbae;
}
.report-item p:empty {
display: none;
}
.report-info {
flex: none;
min-width: 0;
}
.report-title {
margin: 0 20px 0px 20px;
font-size: 1.1rem;
font-weight: 600;
color: #f3eee7;
}
.report-date {
margin: 0 20px 0px 20px;
font-size: 0.9rem;
color: #ffcc33;
}
.disclaim {
margin-top: 15px;
font-size: 0.7rem;
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;
}