.order-tab-container {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  padding: 20px;
  position: relative;
}

.tab-buttons-wrapper {
  align-self: flex-start;
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 400px;
}

.tab-btn {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background-color: white;
  color: #00362A;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #abd7cd7d;
  color: #00362A;
  font-weight: bold;
  box-shadow: inset 0 -2px 0 #abd7cd7d;
}

.tab-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.tab-content img {
  max-width: 200px;
  margin-bottom: 20px;
}

.continue-shopping {
  margin-top: 20px;
}

.shopping-btn {
  padding: 10px 25px;
  background-color: #abd7cd7d;
  color: #00362A;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
