/* Greater Victoria Council Watch - Custom Styles */

/* Base styles - Tailwind handles most styling */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Signal type indicators */
.signal-application { border-left: 4px solid #10b981; }
.signal-infrastructure { border-left: 4px solid #f59e0b; }
.signal-policy { border-left: 4px solid #8b5cf6; }

/* Status badges */
.status-filed { background-color: #dbeafe; color: #1e40af; }
.status-approved { background-color: #dcfce7; color: #166534; }
.status-denied { background-color: #fee2e2; color: #dc2626; }
.status-deferred { background-color: #fef3c7; color: #d97706; }

/* Hover effects */
.card-hover {
  transition: all 0.2s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}