.file-input-label {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff !important;
  font-size: 1.3rem !important;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease-in-out;
  width: fit-content;
}

.file-input-label:hover {
  background-color: var(--btn-color-hover);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.control-group input[type="checkbox"] {
  box-shadow: none;
}

.advanced-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.result-card {
  background-color: var(--header-bg-color);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 600px;
  margin: 20px auto;
  border: 1px solid #e0e0e0;
}

.result-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: white;
  gap: 10px;
}

.result-header-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.result-body {
  padding: 20px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.result-stat {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.result-stat:hover {
  transform: scale(1.05);
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

.result-interpretation {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background-color: #f5f5f5;
}

.result-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.result-actions .btn i {
  margin-right: 5px;
}

.result-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
