.search-icon {
  top: -20px !important;
}
.mdl-menu a {
  text-decoration: none;
}

.table-div {
  overflow: auto;
  max-height: 500px;
}
.table-div table.mdl-data-table {
  max-width: 200px;
  overflow: auto;
  text-align: left;
}

.mdl-data-table td, .mdl-data-table th {
  text-align: left;
}

.table-div a:hover {
  cursor: pointer;
}
#dialog-confirm {
  display: none;
}

/* --- for admin dashboard --- */
.admin-dahboard {
  min-height: 100vh;
}
.admin-dahboard .demo-card-square.mdl-card {
  height: 280px;
}
.admin-dahboard .demo-card-square > .mdl-card__title {
  color: #fff;
  background: no-repeat #46b6ac;
  background-size: cover;
}

/* --- for admin index page --- */
.admin-index.mdl-layout {
  background: url("../../images/layout/login4.jpg") center / cover;
}
.admin-index .mdl-card {
  margin-top: 45px;
}
.admin-index .mdl-card > .mdl-card__title {
  color: #fff;
  height: 250px;
  background: url("../images/man1.png") no-repeat;
  background-position: center;
  background-size: 200px 200px;
}
.admin-index .mdl-card__supporting-text {
  padding: 25px 16px;
}
.admin-index .mdl-textfield {
  width: 80%;
  margin-left: 10%;
}
.admin-index .mdl-card__actions {
  padding: 20px;
}

/* --- register-hotel.php --- */
.register-hotel .mdl-textfield {
  width: 40%;
  margin-left: 10%;
  float: left;
}
.register-hotel .mdl-card {
  margin-top: 20px;
}
.register-hotel .mdl-card__title-text {
  color: #fff;
}
.register-hotel .mdl-card__actions {
  padding: 15px;
}
.register-hotel .mdl-card__actions button {
  width: 50%;
  margin-left: 25%;
}

.table-button {
  padding: 6px 16px;
  background: #349;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
  margin: -4px 0;
  margin-left: 12px;
}

.button-red {
  background: rgb(141, 33, 69);
}

.table-container {
  width: 100%;
  box-sizing: border-box;
}

.error {
  color: rgb(134, 15, 55);
}

/* Message Box Design */
#msg {
  background: rgba(0, 33, 143, 0.596);
  color: #ffffff;
  position: fixed;
  bottom: -4rem;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 1rem;
  padding: 0.6rem 2rem;
  border-radius: 1rem;
  transition: 300ms bottom ease, 200ms opacity ease, background 0ms 300ms ease;
  opacity: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  z-index: 99999999999999999;
}
#msg.success {
  background: rgba(8, 105, 37, 0.9);
}
#msg.error {
  background: rgba(116, 5, 5, 0.9);
}
#msg.show {
  transition: 300ms bottom ease, 200ms opacity ease, background 0ms 0ms ease;
  bottom: 1rem;
  opacity: 1;
}
.overlay-box {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 56789076;
  animation: fadeIn 0.2s ease-in forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  overflow: auto;
}
.box-content {
  margin-top: 20px;
  position: relative;
  padding: 2rem;
  background-color: #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
@keyframes fadeIn {
  0% {
    top: -100vh;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: s 1;
  }
}
.box-content * {
  padding: 0;
  margin: 0;
  max-width: 100%;
  max-height: 300px;
}
.box-content h1 {
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: normal;
  color: #349;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.box-content img {
  background-color: #eaeaea;
  min-height: 40px;
}
.box-content h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}
.box-content p {
  margin: 0.5rem 0;
}
.box-content button.accept,
.box-content button.reject {
  padding: 0.5rem 1rem;
  background-color: rgb(80, 153, 51);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
  color: #fff;
}
.box-content button.reject {
  background-color: rgb(153, 51, 51);
}
.box-content .close-bt {
  top: -15px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(153, 51, 51);
  font-family: Arial;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  overflow: hidden;
  line-height: 1rem;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  padding: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
