/* app/assets/stylesheets/main.css */

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f4f4f8;
    color: #333;
  }
  
  header, footer {
    background-color: #222;
    color: white;
    padding: 1rem;
    text-align: center;
  }
  
  main.content {
    max-width: 1100px;
    width: 100%;
    flex: 1 0 auto;
    margin: 2rem auto 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  form label {
    font-weight: bold;
    display: block;
    margin-top: 1rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="number"],
  select,
  textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  button, input[type="submit"] {
    margin-top: 1.5rem;
    background-color: #0077cc;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover, input[type="submit"]:hover {
    background-color: #005fa3;
  }
  