html * {
  box-sizing: border-box;
}

p {
  margin: 0;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
}

div.a {
  text-align: center;
}

.login-container {
	text-align: center;
	padding: 20px;
}
.main-container {
	padding: 20px;
}
.list-container {
	padding: 20px;
}
.scan-container {
	padding: 20px;
}
.map-container {
	padding: 20px;
}
.doc-container {
	padding: 20px;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.background {
    position: fixed; /* Ensures the background stays fixed */
    top: 0;
    left: 0;
    width: 100vw; /* Full screen width */
    height: 100vh; /* Full screen height */
    background-image: url('assetsrider.png'); /* Replace with your image path */
    background-size: cover; /* Ensures the image scales properly */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    filter: blur(8px); /* Adds the blur effect */
    z-index: -1; /* Ensures it’s behind all other content */
}

.content {
    position: relative;
    z-index: 1; /* Brings the content above the background */
    padding: 20px;
}



.footer {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping to the next line */
    justify-content: center; /* Centers the buttons horizontally */
    align-items: center; /* Aligns buttons vertically */
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    padding: 20px;
    text-align: center;
    overflow-x: auto; /* Allows horizontal scrolling if absolutely necessary */
    gap: 10px; /* Adds spacing between buttons */
}

.footer-button {
    display: flex;
    justify-content: center; /* Centers the icon inside the button */
    align-items: center; /* Centers the icon vertically */
    margin: 0; /* Removes inconsistent spacing */
    color: #fff;
    text-decoration: none;
    border-radius: 50%; /* Makes the buttons round */
    padding: 10px;
    background-color: #555;
    width: 50px; /* Ensures a consistent size for buttons */
    height: 50px; /* Ensures round buttons */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.footer-button.active {
    background-color: #007bff; /* Active button color (e.g., blue) */
}

.footer-button i {
    font-size: 20px;
}

.footer-button:hover {
    background-color: #777; /* Subtle hover effect */
}


#map {
	height: 400px;
}