<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Province report styles */

/* Palette di colori uniforme */
:root {
    --color-primary: #336600;
    --color-secondary: #75a928;
    --color-accent: #b2d732;
    --color-light: #f5f5f5;
    --color-dark: #333333;
    --color-border: #dddddd;
    --color-shadow: rgba(0,0,0,0.2);
    --color-chart-1: #75a928;
    --color-chart-2: #b2d732;
    --color-chart-3: #336600;
    --color-chart-4: #9fda58;
    --color-chart-5: #588528;
    
    /* Colori per vivi e morti */
    --color-vivi: #75a928;
    --color-morti: #ff4444;
}

/* Layout generale */
.province-section {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--color-shadow);
    overflow: hidden;
}

.province-section-header {
    background-color: var(--color-primary);
    color: white;
    padding: 15px;
    margin: 0;
    border-radius: 8px 8px 0 0;
}

.province-section-body {
    padding: 20px;
}

/* Statistiche */
.stat-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--color-shadow);
    margin-bottom: 20px;
    overflow: hidden;
    height: 100%;
}

.stat-header {
    background-color: var(--color-primary);
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.stat-body {
    padding: 15px;
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 15px 0;
    line-height: 1;
}

.stat-description {
    color: #666;
    font-size: 14px;
}

.year-selector-row {
    background-color: var(--color-light);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 5px var(--color-shadow);
}

.year-selector {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

/* Mappa */
.leaflet-container {
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--color-shadow);
    margin-bottom: 20px;
}

/* Grafici */
.chart-container {
    position: relative;
    margin: 20px auto;
    height: 400px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    background-color: white;
}

.chart-title {
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
}

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.loading-indicator i {
    font-size: 30px;
    color: var(--color-primary);
}

/* Tabelle */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.data-table th {
    background-color: var(--color-primary);
    color: white;
    padding: 10px;
    text-align: left;
}

.data-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--color-border);
}

.data-table tr:nth-child(even) {
    background-color: var(--color-light);
}

.data-table tr:hover {
    background-color: rgba(117, 169, 40, 0.1);
}

/* Tabella compatta per i siti */
.compact-table {
    font-size: 13px;
}

.compact-table .compact-col {
    width: 80px !important;
    padding: 8px 4px !important;
    font-weight: 600;
    white-space: nowrap;
}

.compact-table th.compact-col {
    font-size: 12px;
    font-weight: 700;
}

.compact-table td.text-center {
    vertical-align: middle;
}

.compact-table .btn-sm {
    padding: 4px 8px;
    font-size: 11px;
}

.site-table .table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-table .table {
    margin-bottom: 0;
}

.site-table thead th {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.site-table tbody td {
    padding: 10px 8px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.site-table tbody tr:hover {
    background-color: rgba(117, 169, 40, 0.05);
}

/* DataTables personalizzazione */
.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--color-primary);
    color: white !important;
    border-color: var(--color-primary);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--color-secondary);
    color: white !important;
    border-color: var(--color-secondary);
}

/* Styles for species list */
.species-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
}

.species-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.species-item:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.species-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.species-name {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 4px;
}

.species-icon {
    margin-right: 8px;
    color: var(--color-primary);
    font-size: 14px;
    transition: color 0.3s ease;
}

.species-item:hover .species-icon {
    color: white;
}

.species-scientific {
    font-size: 14px;
    color: #666;
    margin-left: 22px;
    transition: color 0.3s ease;
}

.species-item:hover .species-scientific {
    color: rgba(255,255,255,0.9);
}

.no-species {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
    margin: 0;
}

/* Add a subtle animation to indicate clickability */
.species-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.species-item:hover::before {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
    .leaflet-container {
        height: 350px;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .stat-value {
        font-size: 30px;
    }
    
    .species-item {
        padding: 10px 12px;
    }
    
    .species-name {
        font-size: 15px;
    }
    
    .species-scientific {
        font-size: 13px;
    }
}
</pre></body></html>