.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.issue-item-danger {
    border-left: 4px solid #DC3D45;
    background-color: #f8f9fa;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
}

.issue-item-warning {
    border-left: 4px solid #FEC239;
    background-color: #f8f9fa;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
}

.issue-item-alert {
    border-left: 4px solid #FDF5C3;
    background-color: #f8f9fa;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
}

.issue-item-primary {
    border-left: 4px solid #1A76FB;
    background-color: #f8f9fa;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
}

.bg-alert {
    --bs-bg-opacity: 1;
    background-color: #FDF5C3 !important;
}

.selector-list {
    font-size: 0.9em;
    background-color: #e9ecef;
    border-radius: 4px;
    padding: 10px;
    margin-top: 10px;
}

.selector-list ul {
    list-style-type: disc !important;
}

.card-header {
    cursor: pointer;
}

.card-header:hover {
    background-color: #f8f9fa;
}