/* assets/css/style.css */

.blur-background {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
}
.truncate-link {
    display: inline-block;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.urgent-row {
    background-color: #fee2e2 !important;
}
.pagination-btn.active {
    background-color: #3b82f6;
    color: white;
}
.slide-in {
    animation: slideIn 0.3s ease-out forwards;
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}