/* General (start) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1rem;
  font-weight: normal;
}

:root {
  --body-bg-color: gray;
  --body-color: grey;
  --link-color: darkgrey;
  --sign-color: red;
}

@font-face {
    font-family: Ubuntu-Regular;
    src: url('../fonts/Ubuntu-Regular.ttf');
}

html {
  height: 100vh;
}

body {
  min-height: 100%;
  font-family: Ubuntu-Regular, serif;
  background-image: url('../img/bg.png');
}

h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 20px;
  text-indent: 0;
}

label {
  cursor: pointer;
}

.public_area {
  background-color: var(--body-color);
}

.private_area {
  padding: 90px 0 80px 0;
}

.asterisk {
  font-weight: bold;
  color: var(--sign-color);
  font-size: 1rem;
  cursor: default;
}

.sign {
  margin: 0 5px;
  color: var(--sign-color);
}

.sign sup {
  font-weight: bold;
}

.loader {
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  color: var(--body-color);
  border-bottom: 1px solid var(--body-bg-color);
  box-shadow: 0 5px 5px var(--body-bg-color);
}

footer {
  color: var(--body-color);
  border-top: 1px solid var(--body-bg-color);
  box-shadow: 0 -5px 5px var(--body-bg-color);
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer;
}

.editable-cell {
  background-color: rgba(255, 255, 220, 0.7);
}
/* General (end) */
