.cassandra-container {
    max-width: 1320px;
    margin: 0 auto;
    background-color: #1a1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 10px;
    max-height: 230px;
}

.cassandra-header {
    display: flex;
    height:25px;
    justify-content: space-between;
    align-items: center;
    padding: 2px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cassandra-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffcc33;
}

.cassandra-main {
    display: flex;
    gap: 10px;
    padding: 10px;
    max-height: 180px;
}

.cassandra-left {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.cassandra-img {
    width: 80%;
#    max-width: 120;
    height: 120px;
    object-fit: contain;
}

.cassandra-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cassandra-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.cassandra-metric:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.metric-label {
    font-size: 1rem;
    color: #e0e0e0;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0f0f0;
}

/* Description Content */
.desc-content-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.desc-content-wrapper.open {
    max-height: 500px;
    border-top: 1px solid rgba(100, 150, 255, 0.3);
}

.desc-content {
    padding: 20px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 400;
    max-height: 450px;
    overflow-y: auto;
    background-color: rgba(20, 20, 20, 0.6);
}

/* Scrollbar für Description */
.desc-content::-webkit-scrollbar {
    width: 8px;
}

.desc-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.desc-content::-webkit-scrollbar-thumb {
    background: rgba(100, 150, 255, 0.5);
    border-radius: 4px;
}

.desc-content::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 150, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .cassandra-main {
        flex-direction: column;
    }
    
    .cassandra-left {
        flex: 0 0 auto;
    }
    
    .cassandra-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
