/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643;
}

a {
  color: #229954;
  text-decoration: none;
}

a:hover {
  color: #fd5c28;
  text-decoration: none;
}

hr {
  border: 1px solid green;
}  

h1, h2, h3, h4, h5, h6 {
  font-family: "Muli", sans-serif;
}

#timer {
  background-color: rgb(0, 0, 0, 0.8);
  color: #fff;
  height: 35px;
  position: fixed;
  padding: 8px;  
  right: 10px;
  bottom: 10px;
}


form {
  width: 100%;
  padding: 12px 20px;
  border: 1px;
  font-size: 16px;
  border-radius: 4px;
  background-color: #fff;
  
}

select {
  width: 100%;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  background-color: #f1f1f1;
}

input[type=text], input[type=date], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 4px;
  background-color: #f1f1f1;
  margin: 4px;
}

input[type=radio] {  
  
  padding: 12px 20px;
  height: 20px;
  width: 20px;
  background-color: #0000ff;
  border-radius: 50%;
  margin: 8px;
  cursor: pointer;
}


input[type=submit] {
  padding: 12px 25px;
  border: none;
  font-size: 16px;
  color: white;
  border-radius: 4px;
  background-color: #E74C3C;
  cursor: pointer;
}

.btn-custom-margin {
  margin-bottom: 10px; /* Adjust the value as needed */
}


.backbutton {
  padding: 12px 12px;
  border: none;
  font-size: 14px;
  text-align: center;
  color: white;
  border-radius: 4px;
  background-color: grey;
  cursor: pointer;
}


.row::after {
  content: "";
  clear: both;
  display: block;
}



table {
  border-collapse: collapse;
  margin-bottom: 20px;
}

th {
  background-color: rgb(255,0,0,0.9);
  color: white;
  
}

th.hari {
  background-color: darkgreen;
  opacity: 0.7;
  color: white;
  text-align: center;
  padding: 5px;
}

th.room {
  background-color: bisque;	
  color: black;
  text-align: center;
}

th.cari {
  background-color: bisque;
  border: 1px solid red;  
  color: red;
  padding: 5px;
  margin: 10px;
}

td.cari {
  border: 1px solid black;
  padding: 5px;
}

tr:nth-child(even) {background-color: #f2f2f2;}

td {
  font-size: 14px;
  vertical-align: middle;
}

/* For desktop: 
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
*/
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: %;
  }
}




