/* styles.css */

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
 margin: 0;
 display: flex;
 flex-direction: column;

  }
  
  img{
    width: 100px;
    margin: 0 auto;
  }

  header{
    background-color: green;
    display: block;

    
    margin-bottom: 1rem;
  }
  
  h1 {
    color: white;
    text-align: center;
    margin: 0;
    padding-top: 10px;
  }
  
  main {
    margin-top: 70px;
    padding: 20px;
    box-sizing: border-box;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
  }
  
  table, th, td {
    border: 1px solid #ddd;
  }
  
  th, td {
    padding: 10px;
    text-align: left;
  }
  
  th {
    background-color: #f2f2f2;
  }
  
  .buttons-container {
    margin-top: 20px;
    text-align: center;
  }
  
  h1{
    color: black;
    font-family: 'Archivo', 'Arial';
    margin-bottom: 1rem ;
  }
  
  p{
    color: white;
    font-family: 'DM Sans', 'Arial';
    margin: 0;
  }
  
  .material-symbols-outlined {
    font-size: 40px;
    font-variation-settings:
    'FILL' 0,
    'wght' 700,
    'GRAD' 0,
    'opsz' 24
  }
  
  .id__crearHorario{
    width: 40px;
  }

  .margen{
    margin-bottom: 1.5rem;
  }
  
  footer{
    margin-top: auto;
 display: table;
 width: 100%;
 height: 13vh;
 background-color: green;

 text-align: center;
  }