/* SEO Dashboard Styles */
.seo-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e1e5e9;
}

.dashboard-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.dashboard-subtitle {
  font-size: 1.1rem;
  color: #718096;
  margin: 5px 0 0 0;
}

.refresh-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.refresh-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.refresh-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.card-icon {
  width: 24px;
  height: 24px;
  color: #667eea;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.metric-label {
  font-size: 0.875rem;
  color: #718096;
  margin: 4px 0 0 0;
}

.metric-change {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 8px;
}

.metric-change.positive {
  color: #38a169;
}

.metric-change.negative {
  color: #e53e3e;
}

.metric-change.neutral {
  color: #718096;
}

/* Status Indicators */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-pass {
  background: #c6f6d5;
  color: #22543d;
}

.status-warning {
  background: #faf089;
  color: #744210;
}

.status-fail {
  background: #fed7d7;
  color: #742a2a;
}

.status-optimized {
  background: #bee3f8;
  color: #2a4365;
}

.status-needs-improvement {
  background: #fed7e2;
  color: #97266d;
}

.status-good {
  background: #d4edda;
  color: #155724;
}

/* Tabs */
.tab-container {
  margin-bottom: 30px;
}

.tab-list {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 20px;
}

.tab {
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #718096;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab.active {
  color: #667eea;
  border-bottom-color: #667eea;
}

.tab:hover {
  color: #667eea;
}

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.data-table th {
  background: #f7fafc;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.data-table tr:hover {
  background: #f7fafc;
}

/* Score Bars */
.score-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}

.score-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.score-excellent {
  background: linear-gradient(90deg, #38a169, #48bb78);
}

.score-good {
  background: linear-gradient(90deg, #3182ce, #4299e1);
}

.score-average {
  background: linear-gradient(90deg, #ed8936, #f6ad55);
}

.score-poor {
  background: linear-gradient(90deg, #e53e3e, #fc8181);
}

/* Loading States */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3748;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #667eea;
  color: white;
}

.btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #e2e8f0;
  color: #4a5568;
}

.btn-secondary:hover {
  background: #cbd5e0;
}

.btn-success {
  background: #38a169;
  color: white;
}

.btn-success:hover {
  background: #2f855a;
}

.btn-warning {
  background: #ed8936;
  color: white;
}

.btn-warning:hover {
  background: #dd6b20;
}

/* Calendar Styles */
.calendar-view {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calendar-nav button {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  color: #4a5568;
  transition: all 0.3s ease;
}

.calendar-nav button:hover {
  background: #f7fafc;
  border-color: #667eea;
}

.calendar-month {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.calendar-day {
  background: white;
  padding: 12px 8px;
  min-height: 100px;
  position: relative;
}

.calendar-day-number {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.calendar-event {
  background: #667eea;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-bottom: 2px;
  cursor: pointer;
}

.calendar-event:hover {
  background: #5a67d8;
}

/* Recommendations */
.recommendations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recommendation-item {
  background: #f7fafc;
  border-left: 4px solid #667eea;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 0 8px 8px 0;
}

.recommendation-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.recommendation-description {
  color: #4a5568;
  line-height: 1.5;
}

.recommendation-priority {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 8px;
}

.priority-high {
  background: #fed7d7;
  color: #742a2a;
}

.priority-medium {
  background: #faf089;
  color: #744210;
}

.priority-low {
  background: #c6f6d5;
  color: #22543d;
}

/* Progress Indicators */
.progress-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.progress-ring circle {
  fill: transparent;
  stroke: #e2e8f0;
  stroke-width: 8;
  transform-origin: center;
  transform: rotate(-90deg);
}

.progress-ring .progress {
  stroke: #667eea;
  stroke-dasharray: 282.7;
  stroke-dashoffset: 282.7;
  transition: stroke-dashoffset 0.3s ease;
}

.progress-text {
  text-align: center;
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
  .seo-dashboard {
    padding: 16px;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .dashboard-title {
    font-size: 2rem;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-list {
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .data-table {
    font-size: 0.875rem;
  }
  
  .calendar-grid {
    font-size: 0.875rem;
  }
  
  .calendar-day {
    min-height: 80px;
    padding: 8px 4px;
  }
}

@media (max-width: 480px) {
  .dashboard-title {
    font-size: 1.75rem;
  }
  
  .metric-value {
    font-size: 2rem;
  }
  
  .tab {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 12px 8px;
  }
}


/*# sourceMappingURL=app.e8a91c5a61bf6ca4ae2d.css.map*/