.form-group label {
  margin-top: 10px;
  display: block;
  padding: 5px 0;
}

.form-group input {
  padding: 5px;
  border-radius: 3px;
  border-width: 1px;
  border-color: #ccc;
  width: 100%;
}

.btn {
  padding: 8px 15px 10px 15px;
  border: 0;
}

.btn.btn-send {
  color: white;
  background-color: royalblue;
  margin-top: 10px;
}

.text-error {
  color: red;
  display: none;
}

#borda_form {
  border-radius: 5px;
  border: none;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px; /* 5px rounded corners */
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.hr {
  margin-top: 20px;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.margin-top-15 {
  margin-top: 15px;
}

.success-message {
  background-color: rgb(39, 139, 39);
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
}

.error-message {
  background-color: rgb(228, 72, 72);
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
}

.show-messages {
  width: 95%;
  margin: 0 auto;
  color: white;
}

.room-name {
  font-size: 1.8em;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}

.room-description {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.inline-form {
  display: inline;
}

ul.list-default {
  padding: 0;
}

.show-moderators > ul.list-default li {
  list-style: none;
  padding: 5px;
  background-color: rgb(231, 236, 240);
  display: inline-block;
  margin-left: 3px;
}

.show-banned > ul.list-default li {
  list-style: none;
  padding: 5px;
  background-color: rgb(247, 123, 107);
  display: inline-block;
  margin-left: 3px;
  color: white;
}

.jquery-modal {
  z-index: 99999 !important;
}

.fh-autocomplete {
  position: relative;
}

.fh-autocomplete-results {
  width: 100%;
  background-color: white;
  position: absolute;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.fh-autocomplete-results ul {
  padding: 0;
  margin: 0;
}

.fh-autocomplete-results ul li {
  list-style: none;
  padding: 5px 10px;
}

.fh-autocomplete-results ul li:hover {
  background-color: royalblue;
  color: white;
}

/* Estilo adicional para nome de visitantes */
.visitor-status {
  color: #c00 !important;
  font-weight: bold;
  font-style: italic;
}
