/* Assessment Progress Tracking Styles */

.assessment-progress-container {
  margin: 12px 0;
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a5f5a 0%, #2d7a72 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  min-width: 85px;
  text-align: right;
}

.next-step-indicator {
  margin-top: 4px;
}

.next-step-text {
  font-size: 13px;
  color: #1a5f5a;
  font-weight: 600;
}

.completion-badge {
  margin-top: 4px;
}

.badge-success {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #d1fae5;
  color: #059669;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.btn-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1a5f5a;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-continue:hover {
  background-color: #2d7a72;
  color: white;
  text-decoration: none;
}

.btn-continue i {
  font-size: 12px;
}

/* Incomplete Assessments Alert (Dashboard) */
.incomplete-alert {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.incomplete-alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.incomplete-alert-title-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.incomplete-alert-title {
  font-size: 16px;
  font-weight: bold;
  color: #92400e;
  margin: 0;
}

.incomplete-alert-icon {
  color: #d97706;
  font-size: 20px;
}

.incomplete-alert-badge {
  background-color: #fed7aa;
  color: #d97706;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #f59e0b;
}

.incomplete-alert-text {
  font-size: 14px;
  color: #78350f;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.incomplete-alert-button {
  display: inline-block;
  background-color: #f59e0b;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.incomplete-alert-button:hover {
  background-color: #d97706;
  color: white;
  text-decoration: none;
}

/* Patient Card Progress */
.patient-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.patient-card-header-left {
  flex: 1;
}

.patient-card-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .progress-bar-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .progress-text {
    min-width: auto;
    text-align: left;
  }

  .incomplete-alert-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .patient-card-header {
    flex-direction: column;
  }
}
