.snapshot {
  height: 63vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-family: "CiscoSansTT";
}
.snapshot img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 10px;
}


.mainstatus {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 20px;
}

.mainstatus p {
  font-size: 2em;
  margin: 0;
}

.carousel {
  height: 13vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.carousel img {
  height: 100px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s;
}

.carousel img:hover {
  transform: scale(1.1);
}
