@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --primary-color: rgb(155, 76, 3);
}

/* .full-img {
  width: 100%;
} */

body {
  font-family: "Roboto", sans-serif;
}

.login-body {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-image: url('/login-bg.jpeg');
  background-size: 100% 100%;
}

.print-new-line {
  page-break-inside: avoid;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 40%;
  left: 0px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.login {
  width: 450px;
  height: min-content;
  padding: 40px 20px;
  border-radius: 8px;
  background: #fff;
  opacity: .9;
}

.login h1 {
  font-size: 36px;
}

.sidebar {
  min-height: 100vh;
  margin-left: -3rem;
  -webkit-transition: margin 0.25s ease-out;
  -moz-transition: margin 0.25s ease-out;
  -o-transition: margin 0.25s ease-out;
  transition: margin 0.25s ease-out;
}

.sidebar.toggled {
  margin-left: 0;
}

.table thead th {
  padding: 8px;
  text-align: center;
}

.table tbody tr td {
  vertical-align: middle;
}

.seat {
  padding: 0;
  height: 25px;
  width: 30px;
}

.seat:hover {
  cursor: pointer;
}

.manifest-print-area {
  width: 800px;
  font-size: 0.7rem;
}

.ticket-print-area {
  width: 350px;
}

.ticket-print-area h6 {
  font-size: 0.9rem;
  margin: 0;
  margin-bottom: 0.4rem;
}

.manifest-print-area table td,
.manifest-print-area table th {
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 3px;
  word-wrap: break-word;
}

.manifest-print-area table {
  width: 1%;
}

.manifest-print-area table.data,
.ticket-print-area table.data {
  table-layout: fixed;
}

.manifest-print-area table {
  width: 100%;
  margin: 0;
}

@media (min-width: 992px) {
  .sidebar {
    min-width: 200px;
    margin-left: -12rem;
  }
}

@media print {
  .manifest-print-area,
  .ticket-print-area {
    width: 100%;
  }

  .manifest-print-area table td:nth-child(2) {
    text-align: center;
    width: 5%;
  }
}

	
	
	
	
	
	
	
	
	
	
	
  