body {
  background-color: #204c76;
  font-family: Tahoma, sans-serif;
  padding: 0;
  margin: 0;
  color: #f0f0f0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  background-color: black;
  padding: 0.6ex;
  color: white;
}
.header .title {
  font-size: 1.5em;
  font-weight: bold;
}

.content {
  margin: 10px;
  font-size: 200%;
}

.phones-overview {
  display: grid;
  row-gap: 0.5ex;
  grid-template-columns: 6em 3.5em 3.5em 6em 1.5em;
  align-items: center;
}

.name {
  grid-column: 1;
}

.device {
  display: flex;
  background-color: #41678b;
  margin-left: 0.5ex;
  margin-right: 0.5ex;
  padding: 2px;
  border-radius: 3px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.device-name {
  width: 1.5em;
  text-align: center;
}

.device-status-box {
  width: 1.5em;
  text-align: center;
}

.device-status-icon {
  height: 1em;
}

.location {
  width: 5em;
  text-align: center;
  grid-column: 4;
}

img.togglelocation {
  width: 0.8em;
  cursor: pointer;
}
img.togglelocation:active {
  transition: transform 0.1s;
  transform: rotate(30deg);
}

.noconnection-warning {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
}
.noconnection-warning .inner {
  background-color: #204c76;
  border-color: red;
  border-width: 2px;
  border-style: solid;
  color: #f0f0f0;
  padding: 1.5em;
  border-radius: 5px;
  text-align: center;
}

.hidden {
  display: none;
}

.login-panel {
  width: 20em;
  font-size: 80%;
  margin-left: auto;
  margin-right: auto;
}
.login-panel .login-title {
  font-size: 190%;
}
.login-panel .login-error {
  color: red;
}
.login-panel .login-form {
  display: grid;
  row-gap: 0.5ex;
  column-gap: 1ex;
  grid-template-columns: 3fr 2fr;
  align-items: left;
  margin-bottom: 1em;
}
.login-panel input {
  font-size: inherit;
}
.login-panel input[type=submit] {
  width: 4em;
  margin-left: auto;
  margin-right: auto;
}

/*# sourceMappingURL=style.css.map */
