/* styles.css */

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

.container {
  display: flex;
}

.menu-box-botoes {
  width: 310px;
  height: 670px;
  border: 1px solid #ddd;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
}

.btntitulo {
  width: 270px;
  height: 40px;
  margin: 5px 0;
  background-color: #0e2756;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: left;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btntitulo:hover {
  background-color: #d8572a;
}

.titulo-texto {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.id-texto {
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
  flex-shrink: 0;
}

.editor-container {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
}

#titulo-input,
#box-editor-txt {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

#titulo-input {
  width: 100%;
  height: 40px;
}

#box-editor-txt {
  width: 100%;
  height: 400px;
  resize: none;
}

button {
  padding: 10px;
  border: none;
  background-color: #0e2756;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.nome-arquivo {
  padding: 10px;
  border: none;
  background-color: #c7c7c7;
  color: white;
  border-radius: 5px;
  margin-bottom: 10px;
}
.btnverde {
  padding: 10px;
  border: none;
  background-color: #23a509;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}
.controlled-button {
  padding: 10px;
  border: none;
  background-color: #ec0b0b;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}
.controlled-button:hover {
  background-color: #8b0202;
}

.inputs-boxtextos {
  display: flex;
  flex-direction: line;
  margin-bottom: 0;
  gap: 10px;
  padding: 10px;
}

.inputs-textos {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: auto;
}

#nome-input,
#valor-input,
#local-input,
#datahora-input,
#recibo-input,
#placa-input {
  margin-bottom: 5px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.btn-menu {
  display: flex;
  justify-content: flex-start;
  align-items: left;
  padding: 10px;
}
