
.widget-title {
    background-color: #aac0af98; 
    color: transparent;
    text-align: center;
    padding: 5px;
    border-radius: 8px ; /* Rounded top corners */
    font-size: 18px;
    font-weight: bold;
}

.incidents-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #afa54c;
}

.incidents-table th,
.incidents-table td {
    text-align: center;
    padding: 10px;
}

.incident-header {
    background-color: #c47676;
    font-size: 16px;
    font-weight: bold;
}

.incident-row:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.incident-row td {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.incident-row td a i {
    font-size: 16px;
    color: #87be89a9;
}

.incident-row td a i:hover {
    color: #388E3C;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .incidents-table {
        font-size: 12px;
    }
    .widget-title {
        font-size: 16px;
    }
}

