body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	text-align: center;
}

.login-button {
	font-size: 2rem;
	padding: 20px 40px;
	border-radius: 10px;
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none; /* Remove underline from link */
	display: inline-block; /* Make the link behave like a button */
}
.login-button:hover {
	background-color: #0056b3;
}
.login-button i {
	margin-right: 10px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #007bff;
	color: white;
}
.header .title {
	font-size: 24px;
}

.header-banner-home{
	z-index: 999;
	position: relative;
	display: inline-block;
	margin-right:30px;
}

.header-banner-home i{
	color:#fff;
}

.header .dropdown {
	position: relative;
	display: inline-block;
	z-index: 999;
}

.header-banner {
  width: 100%;
  height: 84px; /* Adjust the height as needed */
  background-color: #0d6efd; /* Change the color to match your design */
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 20px -10px rgba(0, 0, 0, 0.3), /* Top shadow */
    0 -20px 20px -10px rgba(0, 0, 0, 0.3); /* Bottom shadow */
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 81px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.dropdown-content {
	display: none;
	position: absolute;
	right: 0;
	background-color: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	min-width: 150px;
	z-index: 1;
	position: fixed;
	margin-right: 20px;
}
.dropdown-content a {
	color: black;
	padding: 10px;
	display: block;
	text-decoration: none;
}
.dropdown-content a:hover {
	background-color: #ddd;
}
.dropdown:hover .dropdown-content {
	display: block;
}
.tile-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}
.tile {
	width: 150px;
	height: 150px;
	margin: 15px;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	font-weight: bold;
}
.tile i {
	font-size: 40px;
	margin-bottom: 10px;
}
.tile:hover {
	background: #007bff;
	color: white;
}

.btn-repair {
	font-size: 1.5rem; /* Medium-sized text */
	padding: 15px 30px; /* Medium-sized buttons */
	margin: 10px; /* Spacing between buttons */
}

.check-in-out-checkbox{
	width: 2em;
    height: 2rem;
}




svg {
  width: 300px;
  display: block;
  margin: 40px auto 0;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  &.circle {
    -webkit-animation: dash .9s ease-in-out;
    animation: dash .9s ease-in-out;
  }
  &.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash .9s .35s ease-in-out forwards;
    animation: dash .9s .35s ease-in-out forwards;
  }
  &.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check .9s .35s ease-in-out forwards;
  }
}

.success {
  text-align: center;
  margin: 20px 0 60px;
  font-size: 2.25em;
  &.success {
    color: #73AF55;
  }
  &.error {
    color: #D06079;
  }
}


@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
