
ul {
  list-style-type: none;
}
body {
  display: inline-block;
  flex-direction: row;
  font-family: Verdana, sans-serif;
  background-color: #D5F2E3;
  border: 10px solid #59C3C3;
}

table{
  table-layout:fixed;
}

td{
  word-wrap:break-word
}


#month {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    text-align: center !important;
}

  #month td, #month th {
    border: 1px solid #ddd;
    padding: 8px;
  text-align: center !important;
  }

  #month tr{
    background-color: #FCF1D7;
  text-align: center !important;
  }

  #month th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #59C3C3;
    color: white;
    text-align:center;
  text-align: center !important;

  }

  #month tbody td {
    text-align:center;
    vertical-align:top;
    height: 150px;
  text-align: center !important;
  }
  #month tr td i{
    display: flex;
    flex-direction: row;
    text-align:center;
    width: 30px;
    height: 30px;
  text-align: center !important;
  }

#entry_of_interest{
  cursor: pointer;
}
.month .prev{
  cursor: pointer;
}
.month .next{
  cursor: pointer;
}



/* Month header */
/* .month_heading {
  padding: 70px 25px;
  width: 100%;
  background: blue;
  text-align: center;
} */
.month {
  /* display: flex; */
  /* justify-content: space-around; */
  /* padding: 70px 25px; */

  padding-right:0;
  padding-top:25px;
  padding-bottom:0px;
  width: 1300px;
  height: 100px;
  background: #D5F2E3;
  text-align: center;
  margin: 0;
  text-align: center !important;
  overflow: hidden;

}
.month thead {
  background: white;
}
.month tbody {
  background: white;
}

.fas {
  padding: 10px;
  grid-column-start: 1;
  cursor: pointer;
}

.fa-sun {
  color: #F7A785;
}

.fa-cloud {
  color: #B997A0;
}

.fa-tint {
  color: #59C3C3;
}

  /* margin: 0;
  padding: 0; */
}

/* Month list */
.month ul {
  padding: 70px 25px; 
}

/* .month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
} */

/* Previous button inside month header */
.month .prev {
  float: left;
  padding-top: 10px;
}

/* Next button */
.month .next {
  float: right;
  padding-top: 10px;
  margin-right: 40px;
}

/* Weekdays (Mon-Sun) */
/* .weekdays {
  margin: 0;
  padding: 10px 0;
  background-color:#ddd;
} */

/* .weekdays li {
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
} */

/* Days (1-31) */
/* .days {
  padding: 10px 0;
  background: #eee;
  margin: 0;
} */

.days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size:12px;
  color: #777;
}

/* Highlight the "current" day */
.days li .active {
  padding: 5px;
  background: #1abc9c;
  color: white !important
}

.current_date {
  background:lightgreen !important;
}



.button {
  background-color: black; /* Green */
  border: none;
  color: black;
  padding: 10px 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

/* new event css stuff */
.hidden {
  display: none;
}

#heading {
  padding-left: 550px;
  font-size: 40px;
}

* {
  box-sizing: border-box;
  overflow: auto;
}

.fullscreen {
  background-color: #FFB575;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  position: fixed;
  padding: 50px;
  font-size: 15px;
}

.fas .fa-chevron-left{
  grid-column-start: 1;
  padding: 0px;
  cursor: pointer;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
 width: 100%; /* Full width */
 padding: 12px; /* Some padding */ 
 border: 1px solid #ccc; /* Gray border */
 border-radius: 4px; /* Rounded borders */
 box-sizing: border-box; /* Make sure that padding and width stays in place */
 margin-top: 6px; /* Add a top margin */
 margin-bottom: 16px; /* Bottom margin */
 resize: vertical /* Allow the */
}

/* Style the submit button with a specific background color etc */

/* When moving the mouse over the submit button, add a darker green color */

/* Add a background color and some padding around the form */



/* HOVER EFFECT PART 1 */

.hiddenText{
  display: none;
}
.past_date:hover .hiddenText{
  display: block;
}
.past_date:hover {
  background: orange;
}
.future_date:hover .hiddenText{
  display: block;
}

.future_date:hover {
  background: pink;
}


.emotion {
  text-emphasis: bold;
  font-size: 20;
}

.mjournal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 500px;
  max-width: 80%;
}

.mjournal.active {
  transform: translate(-50%, -50%) scale(1);
}

.mjournaltitle {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.mjournaltitle .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.mjournaltitle .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.mjournalbody {
  padding: 10px 15px;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}