/* Remove collapsible behavior from deadline alerts with no content */
/* Target deadline alert containers that shouldn't be collapsible */
div[class*="border-amber-200"]:not(:has(div.space-y-1)),
div[class*="border-red-200"]:not(:has(div.space-y-1)) {
    cursor: default !important;
    pointer-events: none !important;
}

/* Remove hover effects from empty deadline alerts */
div[class*="border-amber-200"]:not(:has(div.space-y-1)):hover,
div[class*="border-red-200"]:not(:has(div.space-y-1)):hover {
    background-color: inherit !important;
}

/* If there are expand/collapse icons, hide them for empty alerts */
div[class*="border-amber-200"]:not(:has(div.space-y-1)) svg[class*="chevron"],
div[class*="border-red-200"]:not(:has(div.space-y-1)) svg[class*="chevron"] {
    display: none !important;
}