@import "components/button.css?v=7";
@import "components/table.css?v=7";
@import "components/modal.css?v=10";
@import "components/panel.css?v=4";
@import "components/list.css?v=1";

* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  background: #f4f7fb;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  max-height: -webkit-fill-available;
}

main {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

main::-webkit-scrollbar {
  display: none;
}

.container {
  width: 100%;
}

footer {
  display: flex;
  flex-shrink: 0;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;

  background-color:#0d6efd;
}

a {
  cursor: pointer;
}

select {
  background-color: white;
}

[hidden],
.hidden {
  display: none !important;
}

[class^="mobile-"][class$="-page"] {
  display: none;
}

[class^="mobile-"][class$="-header"] {
  align-items: center;
  background: #f8fafc;
  border-bottom: 1px solid #dbe4ff;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
  min-height: 3.75rem;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

[class^="mobile-"][class$="-header"] h2 {
  color: #1f2937;
  flex: 0 0 auto;
  font-size: 1.15rem;
  margin: 0;
  white-space: nowrap;
}

.header {
  padding: 0;
  color: #Bf192B;
  font-size: 2rem;
  display: flex;
  justify-content:center;
}


@media only screen and (max-width: 960px) {
  html,
  body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    width: 100%;
  }

  main,
  .container {
    height: 100%;
    width: 100%;
  }

  [class^="mobile-"][class$="-page"] {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    width: 100%;
  }

  .mobile-main {
    min-width: 0;
  }

  .mobile-main-fill {
    flex: 1;
  }

}
