.ls-bar-wrapper {
  background: #EAEBF9;
  background-size: cover;
  width: 100%;
  box-shadow: 0 1px 9px 1px rgba(9, 30, 66, 0.15);

}

.ls-bar {
  max-width: 1320px;
  color: #253858;
  padding: 7px 5px;
  font-size: 12px;
  margin: 0 auto;
  line-height: 24px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.ls-bar-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ls-bar-time {
  color: #2F39BF;
}

.ls-bar-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.ls-bar .right-btn {
  background: #2F39BF;
  border: 1px solid #2F39BF;
  color: #fff;
  margin-left: 25px;
  padding: 0 24px;
  text-transform: capitalize;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.ls-bar .right-btn:hover {
  background: #2F39BF;
  border: 1px solid #2F39BF;
  color: #fff;
  opacity: 0.9;
}

/* Responsive styles for mobile */
@media (max-width: 599px) {
  .ls-bar {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .ls-bar-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .ls-bar-actions {
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .ls-bar .right-btn {
      margin-top: 16px;
      margin-left: 0;
      width: 100%;
      max-width: 200px;
  }
}