header {
  overflow: visible;
  background-color: #f1f1f1;
  padding: 20px 10px;
  width: 1200px;
  margin: auto;
}

.header-block {
  display: inline-block;
  float: left;
  width: auto;
  position: relative;
}

header a {
  float: left;
  color: rgba(0, 0, 0, 0.56);
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

header a:hover {
  background-color: #ddd;
  color: black;
}

.gray-indikator {
    color: rgba(0, 0, 0, 0.56);
}

.name-user {
  display: inline-block;
  color: rgb(0, 0, 0);
  padding: 12px;
}

.dropdown {
  display: inline-block;
  float: left;
  width: auto;
  position: relative;
}

button{
  display: inline-block;
  border:none;
  border-radius:5px;
  padding:15px 30px;
  font-size:18px;
  cursor:pointer;
}

button:hover{
  background-color:#ddd;
}

.dropdown-options {
  display: none;
  position: absolute;
  background-color:#fff;
  border-radius:5px;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}

.dropdown:hover .dropdown-options {
  display: block;
  width: 121px;
}

.dropdown-options a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
  padding:20px 40px;
}

.dropdown-options a:hover {
  color: #0a0a23;
  background-color: #ddd;
  border-radius:5px;
}


span.hidden-name {
  color: rgba(0, 0, 0, 0);
}

input.button {
  background-color: #a4f6a4;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.56);
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.bold {
  font-weight: bold;
}

a.btn:hover { background-color: #b4afaf}