/* Plumber-friendly styling changes */

body {
  background-color: #f8f9fa;
  font-family: Verdana, sans-serif;
}

/* More rounded corners for a friendlier appearance */
.card, 
.btn, 
.form-control, 
.form-select, 
.alert, 
.badge,
.list-group-item {
  border-radius: 10px !important;
}

/* Softer button styling */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* Soften header styling */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* More readable font sizes */
body, .btn, .form-control, .form-select {
  font-size: 16px;
}

/* Improved spacing */
.card {
  margin-bottom: 1.5rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
}

.card-body {
  padding: 1.5rem;
}

/* Collapsible section styling */
.custom-collapse-header {
  background-color: #f1f8ff;
  border: 1px solid #d0e3ff;
  padding: 12px 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  color: #0d6efd;
  font-weight: 500;
}

.custom-collapse-header:hover {
  background-color: #e6f0ff;
}

/* Score button styling */
.btn-lg.btn-primary {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.15s ease;
}

.btn-lg.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Improved form styling */
.form-control:focus, .form-select:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Info text styling */
.text-muted {
  color: #6c757d !important;
}

/* Improved icons */
.fas {
  margin-right: 0.5rem;
}

/* Responsive improvements for mobile */
@media (max-width: 768px) {
  .card-body {
    padding: 1rem;
  }
  
  body, .btn, .form-control, .form-select {
    font-size: 14px;
  }
}