@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

html{
  height: 100%;
}



.sidebar {
  height: 100vh;
  padding-top: 1rem;
}

form{
  display: flex;
}

.card{
  width: 18rem; 
}

.table{
  width: 100%;
  margin: 0 auto;
}

.table th, .table td {
  padding: 12px 15px;
  vertical-align: middle;
  text-align: left;
}

.table thead th{
  color: white;
  background-color: rgb(9, 49, 231);
  font-weight: 600;
}

.text-center{
  text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center; /* Centraliza os botões na célula */
    gap: 10px; /* Espaço entre os botões */
}



#cardcheckin{
  background-color: green;
  color: white;
  border-radius: 1rem; 
  box-shadow: 0 0 10px black;
}

#cardcheckout{
  background-color: red;
  color: white;
  border-radius: 1rem; 
  box-shadow: 0 0 10px black;
}

#cardcadastros{
  background-color: blue;
  color: white;
  border-radius: 1rem; 
  box-shadow: 0 0 10px black;
}

#vagasrestantes{
  background-color: yellow;
  color: black;
  border-radius: 1rem; 
  box-shadow: 0 0 10px black;
}

