
body {
    padding: 0;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a202c;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: #2d3748;
    font-weight: 700;
}

.text-blue-100 {
    color: #ebf8ff;
}

.bg-blue-900 {
    background-color: #1a365d;
}

.bg-blue-800 {
    background-color: #2c5282;
}

.border-white\/20 {
    border-color: rgba(255,255,255,0.2);
}

.mapboxgl-popup-content {
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mapboxgl-popup-close-button {
    font-size: 1.5rem;
    padding: 0 0.5rem;
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}
/* Jurisdictions Page Styles */
.bg-gray-900 {
  background-color: #111827;
}

.bg-gray-900\/60 {
  background-color: rgba(17, 24, 39, 0.6);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.region-group {
    position: relative;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.region-label {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #003366;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1;
}

.jurisdiction-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.jurisdiction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.card-header {
    padding: 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flag {
    font-size: 2rem;
    line-height: 1;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.benefit-item i {
    color: #00CC99;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.protection-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.high-protection {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.medium-protection {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.tax-rate {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 0.5rem;
}

.tax-rate strong {
    color: #003366;
}

.filter-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jurisdictions-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}
