/* custom-experience.css: User/Admin Experience Enhancer */

body {
  background: #f8f9fa;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  color: #222;
}

.header, h1, h2, h3 {
  color: #007bff;
}

button, .btn {
  background: #007bff;
  color: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  border: none;
  transition: background 0.2s;
}
button:hover, .btn:hover {
  background: #0056b3;
}

input, select, textarea {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 6px 10px;
  margin-bottom: 8px;
}

.alert, .notification {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 4px;
  padding: 10px 16px;
  margin: 10px 0;
}

/* Responsive improvements */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .header, h1 {
    font-size: 1.5em;
  }
}
