.greenbutton {
  display: inline-block;
  padding: 5px 11px;
  margin: 0;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.greenbutton:hover {
  background-color: #43a047;
  color: #fff;
}

.header {
  background-color: #f7f7f7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logout-button {
  margin: 0;
  padding: 7px 12px;
  background-color:#383838;
  color: white;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.logout-button:hover {
  background-color: #1b264f;
  color: #fff;
}

.logout-button:active {
  background-color: #1b264f;
}

.header-btn-profile {
  margin: 0;
  padding: 7px 14px;
  background-color: #3c8d5e;
  color: #fff;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.header-btn-profile:hover {
  background-color: #327a50;
  color: #fff;
}

.header-btn-logout {
  margin: 0;
  padding: 7px 14px;
  background: none;
  color: #d9534f;
  border: 1.5px solid #d9534f;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-btn-logout:hover {
  background-color: #d9534f;
  color: #fff;
}

.status-item-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 0.9;
  margin-top: 2px;
  color: #303030;
}

.status-bar {
  display: flex;
  align-items: center;
  margin-left: 28px;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  text-align: center;
}

.status-chevron {
  width: 15px;
  height: 15px;
  margin-bottom: 4px;
}

.chevron-right {
  border: solid;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
}

.chevron-right.dark-gray {
  border-color: darkgray;
}

.chevron-right.dark-green {
  border-color: #007000;
}

.chevron-right.bright-green {
  border-color: limegreen;
}

.chevron-container {
  display: flex;
}

.header-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav-right form {
  display: inline-flex;
  margin: 0;
}

.bright-green {
  color: limegreen;
}

.logo-header {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.logo-header img {
  margin-right: 10px;
}

.button-no-wrap {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  max-width: none;
  overflow: visible;
  font-size: 13px;
}

.inline-form {
  display: inline-flex;
  margin: 0;
}
