body {
  font-family: "Karla", sans-serif;
  margin: 5%;
  background-image: url("../images/citybackground.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.center {
  border: 5px solid skyblue;
  padding: 5%;
  margin-top: 15%;
  margin-left: 25%;
  margin-right: 25%;
  margin-bottom: 15%;
  text-align: center;
  backdrop-filter: blur(50px);
  /* font-size: 25px; */
}

.building {
    display: flex;
    flex:1;
    justify-content: flex-start;
    backdrop-filter: blur(50px);
    border: 5px solid black;
}

.buildinginfo {
  border: 5px solid skyblue;
  margin-bottom:50px;
  margin-left: 25%;
  margin-right: 25%;
  text-align: center;
  backdrop-filter: blur(50px);
}

.floor {
    display: flex;
    padding: 10px 5px 2px 10px; /* Add margin/padding as needed */
    border: 2px solid black;
    background-color: #f0f0f0;
    font-size: 29px;
    font-weight: 600;
    height: 80px;
    background-image: url("../images/bricktexture.jpg");
    /* background-repeat: no-repeat; */
    /* background-attachment: fixed; */
    background-size: cover;
    
}
.floor-images {
    margin-left: 40px;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    opacity: 1;
  }

.floorimages-div {
    /* border: 2px solid blueviolet;  */
    /*needed for the debugging*/
    width: 50px;
 }
.direction-image {
  border: 4px solid black;
  background-color: white;
  padding: 2px;
  border-radius: 35%;
  margin-bottom: 5px;

}
.floor-number{
  margin-left: auto;
  border: 1px solid black;
  padding-top: 10px;
  background-color: skyblue;
  border-radius: 15%;
  margin-bottom: 5px;
}
.lift-image {
  width : 60px;
  height: 75px;
  /* border : 4px solid red; */
  border-radius: 10%;
}

/* CSS for lift transition animation */
.transition-animation {
  transition : ease-in 5s; 
}
/* for the elevator open close animation  */
.elevator {
  position: relative;
  width : 60px;
  height: 75px;
  display: flex;
  overflow: hidden;
}
.door {
  position: absolute;
  width: 50%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
#leftDoor {
  left: 0;
  transform-origin: left;
}
#rightDoor {
  right: 0;
  transform-origin: right;
}
