.analytics-stat-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.analytics-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.analytics-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

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

.analytics-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  overflow: hidden;
}

.analytics-section-header {
  padding: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.analytics-section-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}

.analytics-section-body {
  padding: 24px;
}

.salary-card {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px;
}

.salary-card-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 14px;
}

.salary-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.salary-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff5252);
  border-radius: 4px;
}

.salary-range {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}

.salary-avg {
  text-align: center;
  color: var(--red);
  font-weight: 600;
  margin-top: 8px;
}

.application-history-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray);
  border-radius: 12px;
  margin-bottom: 12px;
}

.application-history-item:last-child {
  margin-bottom: 0;
}

.history-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.history-company-logo img {
  max-width: 36px;
  max-height: 36px;
}

.history-info {
  flex: 1;
  min-width: 0;
}

.history-title {
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-company {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.history-meta {
  text-align: right;
}

.history-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.history-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-pending {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}
.status-reviewed {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.status-interview {
  background: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
}
.status-rejected {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
}
.status-accepted {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.table th {
  font-weight: 600;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 2px solid #f0f0f0;
}

.table td {
  vertical-align: middle;
  padding: 16px 12px;
}
