/* Staff Performance Styles */
.performance-score {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.performance-label {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.score-card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.score-card:hover {
  transform: translateY(-5px);
}

.score-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.performance-history-card {
  transition: all 0.3s ease;
}

.performance-history-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.performance-trend-chart {
  height: 300px;
  margin-top: 2rem;
}

.evaluation-date {
  font-size: 0.9rem;
  color: #6c757d;
}

.performance-level-badge {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
}

.level-exceptional {
  background-color: #28a745;
  color: white;
}

.level-above-average {
  background-color: #17a2b8;
  color: white;
}

.level-satisfactory {
  background-color: #ffc107;
  color: #212529;
}

.level-needs-improvement {
  background-color: #fd7e14;
  color: white;
}

.level-unsatisfactory {
  background-color: #dc3545;
  color: white;
}

/* Progress bar animations */
.progress-bar {
  transition: width 1s ease-in-out;
}

/* Admin evaluation form */
.evaluation-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.score-input {
  font-size: 1.5rem;
  text-align: center;
  height: 60px;
}

.score-range {
  width: 100%;
  margin-top: 1rem;
}

/* Staff view specific styles */
.staff-view-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.staff-view-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #007bff, #6610f2);
  color: white;
}

.staff-performance-summary {
  padding: 2rem;
}

/* Print styles */
@media print {
  .no-print {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  .card {
    border: 1px solid #dee2e6;
    box-shadow: none;
  }

  .card-header {
    background-color: #f8f9fa !important;
    color: #212529 !important;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .performance-score {
    font-size: 2rem;
  }

  .performance-label {
    font-size: 1rem;
  }
}
