/* root */
:root {
  --primary-color: #00205b;
  --secondary-color: #ffffff;
}

@media screen and ((max-width: 1280px) or (max-height: 720px)){
  body {
   transform: scale(0.6);
   transform-origin: 0 0;
  }
}

@media screen and ((max-width:1400px) or (max-height: 900px)) {
  body {
    transform: scale(0.8);
    transform-origin: 0 0;
   }
}

body {
  min-width: 1150px;
  overflow: auto;
}

#header {
  background-color: var(--primary-color);
}

#content{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

#logo {
  max-height: 50px;
}

#sidebar {
  padding: 1.5rem;
  margin-left: 0.3rem;
  margin-bottom: 0.3rem;
  width: 200px;
  min-width: 200px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 0.3rem;
  overflow-y: auto;
}

.data-menu {
  min-height: 90px;
  border-radius: 4px;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.timeControl {
  display: none;
}

.timeControl.active {
  display: block;
}

.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:visited {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
