﻿html, body {
  height: 100%;
}

body {
  background-color: #fff;
  color: black;
  font-family: sans-serif;
  font-size: 12px;
  margin: 0;
}

hr {
  width: 100%;
  background-color: #091C44;
}

h1 {
  margin: 0;
}

.app-container {
  height: 100%;
  display: flex;
}

.red {
  color: #EC2C2E;
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

custom-button {
    display: inline-flex;
    margin: 2px;
}

.hidden {
  visibility: hidden !important;
}

.d-none{
  display: none !important;
}

.custom-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  pointer-events: none;
}

.form-divider {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}

custom-button {
  display: inline-block;
}

.table-container {
  padding: 10px 10%;
  display: flex;
}

custom-table {
    flex: 1;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .container-actions {
        flex-direction: column !important;
    }

    .table-container {
        padding: 2px;
    }

}