body {
  background-color: #f2efef !important;
}

.main-card {
  background-color: #fafafa;
  border-radius: 0.375rem;
  margin: 5rem auto;
  padding: 10px;
  width: 70%;
  transition: box-shadow 0.5s ease;
}

.main-card:hover {
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);
}

#center-content {
  text-align: center;
  margin-top: 20%;
}

#header {
  margin-bottom: 20px;
  text-align: center;
}

#header h1 {
  font-size: 1.5em;
}

#sub-header {
  font-size: 1.2em;
  font-weight: bold;
}

#transaction-wrap {
  position: relative;
  margin-top: 10%;
  margin-left: 25%;
}

#transaction-line {
  height: 2px;
  width: 100%;
  position: relative;
  margin: 10% 0;
  /* background-color: #ccc; Base line color */
}

/* The animated line segments for each step */
.transaction-line {
  height: 100%;
  position: absolute;
  background-color: #4caf50; /* Progress line color */
  transition: width 1.5s ease; /* Smooth transition */
}

.line1 {
  width: 0%;
  left: 0;
}

.line2 {
  width: 0%;
  left: 33.33%;
}

/* Transaction point styling */
.transaction-point {
  z-index: 1000;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  margin-left: -25px;
  border-radius: 50%;
  background-color: #ff5733; /* Default color for non-reached points */
}

.transaction-point p {
  margin-top: 10px;
  font-size: 14px;
  color: #000;
  line-height: 1.2;
  padding: 5px;
}

.point1 {
  top: -25px;
  left: 0;
  background-color: #4caf50; /* Start point is reached */
}

.point2 {
  top: -25px;
  left: 33.33%;
}

.point3 {
  top: -25px;
  left: 66.66%;
}

/* Reached point color */
.reached {
  background-color: #4caf50 !important; /* Green for reached points */
}

/* Not reached point color */
.not-reached {
  background-color: #ff5733 !important; /* Red for not reached points */
}

.report {
  margin-top: 17%;
  text-align: center;
}

.my-table {
  /* Additional styling can go here */
}

.table-data {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}

.table-center-text {
  /* Center text styling can go here */
}
