/* Add custom global styles here if needed beyond the <style> block in header.php */

.table-hover tbody tr:hover {
    background-color: #f1f1f1; /* Lighter hover for table rows */
}

/* Style for datalist dropdowns */
input[list]::-webkit-calendar-picker-indicator {
    display: none;
}

/* Make cards slightly interactive */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.list-group-item-action:hover {
    background-color: #f8f9fa; /* Standard hover color for list items */
}