/* H5N1 Map Styles */

.h5n1-map {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.h5n1-map .map-group {
    pointer-events: none;
}

.h5n1-map .marker-group {
    pointer-events: all;
}

.h5n1-map .h5n1-marker {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.h5n1-map .h5n1-marker:hover {
    opacity: 1 !important;
    stroke-width: 2;
}

.h5n1-map .country-label {
    pointer-events: none;
    font-family: Arial, sans-serif;
}

.h5n1-map .map-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.h5n1-map .map-subtitle {
    font-family: Arial, sans-serif;
}

.h5n1-map .legend-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.h5n1-map .legend-label {
    font-family: Arial, sans-serif;
}

/* Tooltip styles */
.h5n1-tooltip {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1000;
}

/* Responsive design */
@media (max-width: 768px) {
    .h5n1-map {
        width: 100%;
        height: auto;
    }
    
    .h5n1-map .country-label {
        font-size: 8px;
    }
    
    .h5n1-map .map-title {
        font-size: 14px;
    }
    
    .h5n1-map .map-subtitle {
        font-size: 10px;
    }
}

/* Print styles */
@media print {
    .h5n1-map {
        page-break-inside: avoid;
    }
    
    .h5n1-map .h5n1-marker {
        opacity: 1 !important;
    }
} 

table.dataTable thead .sorting_asc {
    background-image: url(/src/img/sorting-icons/sort_asc.png)!important;
	padding-right: 15px;
}
table.dataTable thead .sorting_desc {
    background-image: url(/src/img/sorting-icons/sort_desc.png)!important;
	padding-right: 15px;
}
table.dataTable thead .sorting {
    background-image: url(/src/img/sorting-icons/sorting_both.png)!important;
	padding-right: 15px;
}
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center right;
}