.flex_row {
  display: flex;
  flex-flow: row nowrap;
}

.flex_col {
  display: flex;
  flex-flow: column nowrap;
}

.fill {
  width: 100%;
  height: 100%;
}

.button, button {
  border-radius: 0.5rem;
  border: none;
  margin: 0.75rem;
  font-weight: bold;
  padding: 1rem;
  color: #889b76;
  background-color: #34412a;
  box-shadow: 0.3rem 0.3rem 0.5rem 0rem #454750;
}
.button:focus, button:focus {
  outline: none;
}
.button:hover, button:hover {
  color: #34412a;
  background-color: #889b76;
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu"), url(assets/fonts/Ubuntu/Ubuntu-Regular.ttf) format("ttf");
}
* {
  font-size: inherit;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Ubuntu", sans-serif;
  -webkit-font-smoothing: antialiased;
  border: 0;
}

body, html {
  margin: 0;
  padding: 0;
  font-size: 1vw;
  scroll-behavior: smooth;
}
@media only screen and (orientation: landscape) and (min-width: 1280px) {
  body, html {
    font-size: 12.8px;
  }
}
@media only screen and (orientation: portrait) {
  body, html {
    font-size: 3.33333vw;
  }
}

select option:checked:after {
  content: attr(title);
  background: #666;
  color: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  border: none;
}

div {
  color: #889b76;
}

.main {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  overflow: hidden;
  background-color: rgba(75, 102, 75, 0.9450980392);
  background-image: url("./d/assets/image/background.png");
  background-repeat: repeat;
  background-size: 30%;
  background-blend-mode: color-dodge;
}
@media only screen and (orientation: portrait) {
  .main {
    padding: 0rem;
    background-size: 60%;
  }
}

.clickable {
  cursor: pointer;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.2s ease;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.list-move,
.list-enter-active,
.list-leave-active {
  transition: all 0.5s ease;
}

.list-enter-from,
.list-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

.text {
  background-color: rgba(75, 102, 75, 0.9450980392);
  vertical-align: middle;
  padding-left: 1rem;
  height: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border: none;
}

.label {
  font-weight: bold;
  justify-self: stretch;
  width: 10rem;
  color: #34412a;
  padding: 0.5rem;
  white-space: nowrap;
}

input {
  width: 100%;
  font-size: 1.1rem;
  margin: 0.1rem;
  padding: 0.5rem;
  background-color: rgba(75, 102, 75, 0.9450980392);
  box-shadow: inset 0 0 5px rgba(57, 61, 60, 0.51);
}

.icon {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1.2rem;
}

table {
  width: 100%;
}

td, th {
  border: 0.01rem solid rgba(75, 102, 75, 0.9450980392);
  text-align: left;
  background-color: rgba(75, 102, 75, 0.9450980392);
}

th {
  background-color: rgba(75, 102, 75, 0.9450980392);
  color: #c7ba92;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 0.5rem;
}
@media only screen and (orientation: portrait) {
  ::-webkit-scrollbar {
    width: 1rem;
  }
}
::-webkit-scrollbar-track {
  background-color: #c7ba92;
  border-radius: 0.25rem;
}
@media only screen and (orientation: portrait) {
  ::-webkit-scrollbar-track {
    border-radius: 0.5rem;
  }
}
::-webkit-scrollbar-thumb {
  background-color: #f0c962;
  border-radius: 0.25rem;
}
@media only screen and (orientation: portrait) {
  ::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
  }
}
::-webkit-scrollbar-corner {
  background-color: rgba(0, 0, 0, 0);
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #3b513b;
  opacity: 1;
}

::placeholder { /* Standard */
  color: #3b513b;
}