* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #e9dcf9);
  /* background: #f1f3f5; */
}
.container {
  max-width: 800px;
  width: 100%;
  display: flex;
  /* background-color: red; */
  padding: 10px;
  margin: 10px auto;
  flex-direction: column;
  gap: 5px;
  /* position: relative; */
}
.container .heading {
  /* background: #d6d3d3; */
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #c0b9b9;
  border-bottom: none;
  color: #000;
}
.container .main-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
}
.container .main-container .column {
  /* background: #3d3637; */
  width: 100%;
  height: 500px;
}

.left,
.mid {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
}
.left .top-part,
.left .bottom-part {
  /* background: #ccc; */
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px solid #bcc7cb;
}

.left .top-part {
  /* border-bottom: none; */
  border-right: none;
  border-bottom: none;
  /* border-right: 2px solid #ffffff; */
  color: #000;
}
.left .bottom-part {
  border-left: none;
  border-top: none;
  /* border-left: 2px solid #ffffff; */
}

.left .top-part,
.left .bottom-part {
  /* background: red; */
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.left .top-part .single-row {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  align-items: center;
}
.left .top-part .single-row label {
  font-size: 18px;
  width: 40px;
  display: flex;
  justify-content: center;
  font-size: 25px;
}
.left .top-part .single-row input {
  border: none;
  outline: none;
  font-size: 18px;
  padding: 10px;
  border-radius: 5px;
  width: 100px;
  border: 2px solid #a09e9e;
}

.left .top-part .single-row button {
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 5px;
  background: #96d8f6;
  border: 1px solid #55a6c4;
}
.left .top-part .single-row button:hover {
  cursor: pointer;
  background: #7acef5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.496);
}
#save-notification-part {
  /* display: none; */
  height: 30px;
}
#save-notification-message {
  /* display: none; */
  background: #e4f5fe;
  background: linear-gradient(135deg, #e4f5fe, #b6e4ff);
  text-align: left;
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  border: 2px solid #3aaee3;
}

.left .bottom-part .single-row button#start-btn {
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 5px;
  background: #7ef2b6;
  border: 1px solid #069e20;
  width: 48%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.217);
}
.left .bottom-part .single-row button#start-btn:hover {
  cursor: pointer;
  background: #52e79a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.496);
}

.left .bottom-part .single-row button#reset-btn {
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 5px;
  background: #fe9f9f;
  border: 1px solid #e32424;
  width: 48%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.217);
}
.left .bottom-part .single-row button#reset-btn:hover {
  cursor: pointer;
  background: #f28b8b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.496);
}

.left .bottom-part .message-container {
  height: 160px;
  overflow-y: auto;
}
.mid {
  padding: 0 10px;
}
.mid .box {
  /* background: #deebf1; */
  width: 100%;
  height: 100%;
  border-radius: 5px;
  /* padding: 0; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.217);
}
.right {
  display: flex;
  width: 100%;
  height: 100%;
  /* background: #ccc !important; */
  border-radius: 5px;
  border: 2px solid #b9b3b3;
  border-left: none;
}
.element {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  gap: 0;
  /* background: blue; */
}
.element .left-part {
  width: 30%;
  background: #75cfef;
  display: flex;
  justify-content: center;
  align-items: center;
}
.element .right-part {
  width: 70%;
  /* background: #a8a8a4; */
  border: 2px solid #3aaee3;
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}
.actual-val {
  color: rgb(50, 130, 199);
  width: 100px;
  overflow-x: auto;
}

.message-container-box {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 0 auto;
  background: #e9e9e9;
  padding: 10px;
  border-radius: 5px;
  gap: 10px;
  display: none;
}
.message-container-box.active {
  display: block;
}
.message-container-box .button-section {
  display: flex;
  justify-content: center;
}
.message-container-box .button-section button {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  background: #ff9191;
  border: 1px solid rgb(184, 0, 0);
  width: 100%;
}
.message-container-box .button-section button:hover {
  cursor: pointer;
  background: #eb6a6a;
}
.message-container-box {
  position: relative;
  bottom: 500px;
}
.message-container-box .message-body {
  height: 250px;
  overflow-y: auto;
}

.left-part-a {
  background: #f09797 !important;
}
.left-part-b {
  background: #eedc9b !important;
}
.left-part-c {
  background: #97cff0 !important;
}
#val-a-box {
  border: 2px solid #f09797;
  color: #000;
}
#val-b-box {
  border: 2px solid #ead896;
  color: #000;
}
#val-c-box {
  border: 2px solid #97cff0;
  color: #000;
}
.actual-val {
  color: #000;
}

/* #val-c{
  position: relative;
  left: 150%;
  top: -240%; 
} */

#var-name {
  font-size: 25px;
  font-weight: 500;
}
#process-information {
  color: #000;
}
.actual-val {
  color: #000;
}

#val-a,
#val-b,
#val-c {
  position: relative;
}

.first-animation {
  animation: move-down 1s linear 1;
}

.in-C-box {
  top: 120%;
}
@keyframes move-down {
  0% {
    top: 0%;
  }
  100% {
    top: 120%;
  }
}

/* #val-c {
  animation: move-right-top-left-animation 5s linear 1;
} */

.move-right-top-left {
  animation: move-right-top-left-animation 3s linear 1;
}

@keyframes move-right-top-left-animation {
  0% {
    left: 0%;
    top: 0%;
    /* color: #fff; */
  }
  37% {
    left: 140%;
    top: 0%;
    /* color: #373737; */
  }
  /* 50% {
     left: 140%; 
    top: -120%;
  } */
  62% {
    left: 140%;
    top: -240%;
    /* color: red; */
    /* color: red; */
  }
  100% {
    left: 0%;
    top: -240%;
    /* color: yellow; */
  }
}

.final-position {
  top: -240%;
  left: 0;
}
#save-notification-message {
  color: #000;
}

.menu-btn {
  height: 40px;
  width: 50px;
  background: linear-gradient(135deg, #bdf1fb, #ffffff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: absolute;
  top: 30px;
  right: 30px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.288); */
  gap: 4px;
  display: none;
}
.line {
  width: 25px;
  height: 2.5px;
  border-radius: 2px;
  background: #2d2c2c;
}
.menu-btn:hover {
  background: #bdf1fb;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.288);
  cursor: pointer;
}

@media (max-width: 600px) {
  .container {
    /* flex-direction: row; */
    width: 96vw;
    margin: 10px auto;
    background: #fdfdfd;

    /* background: rgb(164, 157, 157); */
  }
  .mid,
  .right {
    height: 450px !important;
    font-size: 20px;
    /* background: red; */
    padding-left: 0;
    /* border: none !important; */
    background: #fdfdfd;
  }
  .element .right-part {
    font-size: 30px;
  }
  .left {
    position: absolute;
    top: 540px;
    flex-direction: row;
    width: 90vw !important;
    gap: 5px !important;
    justify-content: center !important ;
    /* background: rgb(149, 149, 134); */
  }
  .top-part,
  .bottom-part {
    width: 90vw !important;
    /* border: 2px solid #d6d3d3 !important; */
    /* border: none !important; */
    height: 280px !important;
    padding: 2px !important;
    margin: 0 auto !important;
    /* background: red; */
    /* align-items: center !important;
    justify-content: flex-start; */
  }
  .top-part {
    border-right: none !important;
    border-bottom: none !important;
    /* display: none !important; */
    position: absolute;
    top: -455px;
    right: 10px;
    background: linear-gradient(135deg, #ccc, rgb(255, 182, 182));
    background: #ccc;
    border: none;
    width: 80vw !important;
    margin: 0 auto !important;
    display: none !important;
  }
  .bottom-part {
    border: none !important;
  }
  #process-information {
    padding-left: 10px !important;
    /* background: green !important; */
  }

  .left .bottom-part {
    justify-content: flex-start;
  }
  .left > .bottom-part > .single-row {
    width: 88vw !important;
    display: flex;
    justify-content: space-between !important;
    padding: 0 auto !important;
    /* background: #fff; */
    margin: 0 auto !important;
    /* flex-direction: column !important; */
  }
  #var-name {
    font-size: 20px;
    font-weight: 500;
  }
  .element .left-part {
    width: 40% !important;
    font-size: 15px !important;
  }
  .top-part .val-row {
    /* gap: 5px !important; */
    justify-content: center !important;
    /* background: red !important */
  }

  .top-part.active-display {
    display: flex !important;
    background: linear-gradient(
      135deg,
      #ccc,
      rgb(255, 168, 168),
      rgb(208, 153, 255)
    );
    z-index: 5;
  }
  .hidden-display {
    display: none;
  }
  #project-title {
    font-size: 25px !important;
  }
  .menu-btn {
    display: flex;
  }
  #save-notification-message {
    width: 70%;
  }
  .actual-val{
    width: 50px;
  }
}
