
html {
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: linear-gradient(160deg, #9999ee, white, white, white, white, white, #ccccff);
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed;
}

.container {
  outline: 1px solid  #666699;
}
  

.msg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

#msg {
    padding: 15px;
    background-color: transparent;
    color: blue;
    padding: 3em;
    font-size: 3em;
    width: 50%;
    text-align: center;
}

#instruction {
  font-size: 1.8rem;
}

#founds table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

td {
    border: 1px solid #999999;
    background-color: rgba(255,255,255,0.4);
    padding: 4px;
    text-align: center;
}

td.today {
  background-color: rgba(192,192,255, 0.4);
}

table tr:first-child td:not(:first-child) {
    background-color: #eeeeff;
}

table tr:not(:first-child) td:first-child {
    background-color: #eeeeff;
}

table tr:first-child td:first-child {
    border: 0px solid red;
    background-color: transparent;
    /*color: red;*/
}


.hidden { display : none }

#selector {
  position: relative;
  /*background: #eeeeff;*/
  /*outline: 1px solid green;*/
  width: 20em;
  /*padding: 1em;*/
  /*float: right;*/
  text-align: right;
}

#innerselector {
  position: absolute;
  left: 0;
  width: 20em;
  /*background: #eeeeff;*/
  background: rgba(240, 240, 255, 0.95);
  text-align: left;
  color: black;
  outline: 1px solid #ccccff;
  padding: 1em;
  display: none;
}


.fbc {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.fbc > div {
  margin: 1rem;
}


.bar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: start;

  width: 100%;

  /* //background: rgba(240, 240, 255, 0.95); */
  background-color: #666699;
  /* //outline: 1px solid #9999ff; */
  color: #ccccff;
  font-size: 1.2em;

  /*
  // main-axis   justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
  // cross-axis  align-items: stretch | flex-start | flex-end | center | baseline | first baseline | last baseline | start | end | self-start | self-end + ... safe | unsafe;
  */

}

.bar .left {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  padding: 0.4rem;

}

.bar .right {
  display: flex;
  justify-content: flex-end;
  align-items: start;
  padding: 0.4rem;
}

/*
.bar div { outline: 1px solid red; }
*/
