/* Modern Freelancer Aesthetic – Clean, Bold, Professional */
body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%) !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  color: #2d3748 !important;
  min-height: 100vh !important;
}

.container {
  background: white !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  padding: 2.5rem !important;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  max-width: 1000px !important;
}

h1 {
  font-weight: 700 !important;
  background: linear-gradient(90deg, #6c5ce7, #a29bfe) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2.5rem !important;
  margin-bottom: 0.5rem !important;
}

h5 {
  color: #4c1d95 !important;
  font-weight: 600 !important;
  margin-bottom: 0.8rem !important;
  position: relative !important;
}

h5::after {
  content: '' !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 0 !important;
  width: 40px !important;
  height: 3px !important;
  background: #6c5ce7 !important;
  border-radius: 2px !important;
}

.form-control, .form-control:focus {
  border: 1.5px solid #cbd5e0 !important;
  border-radius: 10px !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 0.25s ease !important;
  background-color: #fafbff !important;
}

.form-control:focus {
  border-color: #6c5ce7 !important;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2) !important;
  background-color: white !important;
}

textarea.form-control {
  resize: vertical !important;
  min-height: 80px !important;
}

.btn {
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: 0.65rem 1.5rem !important;
  transition: all 0.25s ease !important;
  text-transform: none !important;
  font-size: 0.95rem !important;
}

.btn-success {
  background: linear-gradient(135deg, #00b894, #00cec9) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3) !important;
}

.btn-success:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4) !important;
}

.btn-secondary {
  background: #dfe6e9 !important;
  color: #2d3748 !important;
  border: none !important;
}

.btn-secondary:hover {
  background: #b2bec3 !important;
}

.btn-danger {
  background: #ff7675 !important;
  border: none !important;
  font-size: 0.8rem !important;
  padding: 0.3rem 0.6rem !important;
}

.btn-danger:hover {
  background: #e17055 !important;
}

.btn-outline-primary {
  border-color: #6c5ce7 !important;
  color: #6c5ce7 !important;
}

.btn-outline-primary:hover {
  background: #6c5ce7 !important;
  color: white !important;
}

.item-row {
  background: #f8f9fa !important;
  border: 1.5px dashed #dfe6e9 !important;
  border-radius: 12px !important;
  padding: 12px !important;
  margin-bottom: 12px !important;
  transition: all 0.2s ease !important;
}

.item-row:hover {
  border-color: #6c5ce7 !important;
  background: #f0efff !important;
}

.form-label {
  font-weight: 600 !important;
  color: #4c1d95 !important;
  margin-bottom: 0.5rem !important;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem !important;
    margin: 1rem !important;
  }
  h1 {
    font-size: 2rem !important;
  }
}