*{
  margin: 0;
  padding: 0;
  font-family: "Copperplate", fantasy;
  font-weight: normal;
}

/*topo do site*/

body {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topo {
    width: 100%;
    padding: 10px;
    background-color: #012e40;  /* Cor de fundo escura */
    color: white;            /* Texto branco */
    z-index: 10;             /* Fica acima de outros elementos */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.menu-superior ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 325px;
}

.menu-superior a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-superior a:hover {
  text-decoration: underline;
  color: #6eb9ff;
}

.logoui {
  width: 230px;
  height: auto;
  margin-left: 290px;
 
}


.centro {
  width: 68%;         
  height: 100%;        
  margin: 0 auto;        
  background-color: #f0f0f0; 
  padding: 20px;
  box-sizing: border-box;
}


h2, h4 {
    margin-bottom: 20px;
}

h3 a {
    color: #f54702;
    text-decoration: none;
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid #ddd;
    text-align: center;
}

td {
	height: 30px;
}

th {
    background-color: #012e40;
    color: white;
    padding: 10px;
}

input { 
    width: 100%;
    height: 100%; 
    display:inline-block;
    position:relative;
    border: none;
    text-align: center;
}

input:focus {
    outline: none;
}

/* Botões */
button {
    background-color: #012e40;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #f54702;
}

/* Link de logout */
a[href="logout.php"] {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

a[href="logout.php"]:hover {
    color: #ff1a1a;
}

.lugares {
	width: 400px;
	display: inline-block;
}

.tdlugares {
	width: 200px;
}

.perfil {
	display: inline-block;
	position: absolute;
	top: 700px;
	left: 920px;
}

.perfilinput {
	height: 30px;
	width: 400px;
	margin-left: 20px;
	border: 1px solid black;
	border-radius: 2px;
}

.perfilinput::placeholder {
	text-align: center;
}

.logininput {
	height: 25px;
	width: 150px;
	margin-left: 20px;
	border: 1px solid black;
	border-radius: 2px;
}

.logininput::placeholder {
	text-align: center;
}


#baixo {
    margin-left: 27px;
}

.form {
    width: 90%;
    height: 120px;
}

.formlogin {
    height: 100px;
}