body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #006168;
  color: #fff;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header {
  /* background-image: url("../images/header.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;

  background-color: #006168;
  color: #fff;
  height: 120px;
}

.left-div {
  display: flex;
}
.right-div {
  display: flex;
  align-items: center;
  text-align: right;
  font-size: 36px;
}

.container {
  display: flex;
  height: calc(100vh - 40px);
  /* Viewport height minus header height */
}

.sidebar {
  width: 200px;
  background-color: #f4f4f4;
  padding: 20px;
}

.content {
  flex: 1;
  padding: 30px;
}

.login-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 25vw;
  min-width: 250px;
}

.login-container h2 {
  color: #006168;
}

.input-group {
  margin: 20px 0;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #000;
}

.input-group input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-btn {
  background-color: #006168;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

/* Users */
#modalChangeTag {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

th {
  background-color: #00a79d;
}

.content-button {
  width: 150px;
}

.content-button-in {
  background-color: #15dd7b;
  border: 1px solid #15dd7b;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  max-width: 400px;
}

#closeBtn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#closeBtn:hover,
#closeBtn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
