.primary-problem {
    cursor: pointer;
}
.problem {
    cursor: pointer;
}
.problem:hover {
    background-color: #f8f9fa;
}
.problem.active {
    background-color: #e9ecef;
}
.primary-problem:hover {
    background-color: #f8f9fa;
}
.primary-problem.active {
    background-color: #e9ecef;
}
.problem {
    border-left: 2px solid #dee2e6;
}
.problem-actions {
    min-width: 30px;
}
.problem-actions .btn:hover {
    opacity: 0.8;
}
.problem-actions {
    min-width: 30px;
}
.card-body {
    padding: 1rem;
}
.btn-link:hover {
    opacity: 0.8;
}
.loading {
    padding: 2rem;
}
.description-wrapper {
    position: relative;
}

.description-content {
    max-height: 30px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.description-content.show {
    max-height: none; /* Adjust based on content */
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
    transition: opacity 0.3s ease-out;
}

.description-content.show + .fade-overlay {
    display: none;
}
@media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px;
    }
}
