body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.logo {
    position: absolute;
    top: 10px;
    width: 80px;
}

.logo:hover {
    filter: brightness(85%);
    transition: 0.2s;
}

.logout {
  position: absolute;
  top: 10px;
  right: 25%;
  text-align: right;
  font-size: 12pt;
  font-weight: bold;
}

@media screen and (orientation:portrait) {
.logo {
    left: 15px;
    width: 60px;
}

.logout {
  right: 15px;
}
}

.container {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
}

.error-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f44336;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-radius: 2px;
    display: none;
    z-index: 9999;
}

h1 {
    text-align: center;
    color: #333;
}

h2 {
    text-align: center;
    color: #333;
    font-size: 14pt;
}

.underline {
    border-bottom: 2px solid #333;
    padding-bottom: 1px;
}

a.link {
    text-decoration: none;
}


a:link { 
  text-decoration: none;
  color: #888;
}

a:visited { 
  text-decoration: none;
  color: #888;
}

a:hover { 
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

a:active { 
  text-decoration: none;
  color: #333;
} 

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

input, select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 2px;
}

input[type=text] {
  padding: 10px 10px;
  margin: 5px 0 10px;
  box-sizing: border-box;
}

.password {
  padding: 10px 10px;
  margin: 5px 0 10px;
  box-sizing: border-box;
}

select {
  padding: 10px 10px 10px 5px;
  margin: 5px 0 10px;
  box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #555;
    transition: 0.2s;
}

.ticket-buttons {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

#ticketReport li {
    display: flex;
    align-items: center; /* Allinea verticalmente il testo e la "x" */
    justify-content: space-between; /* Aggiunge spazio tra il prezzo e la "x" */
    margin-bottom: 10px;
    margin-left: -40px;
    margin-right: 0;
}

#ticketReport li button {
    width: 20px; /* Larghezza fissa per il pulsante "x" */
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    margin-right: 0;
}

.ticket-btn {
    margin-bottom: 10px; /* Aggiungi uno spazio di 10px tra i pulsanti */
}

.footer {
font: 13px Arial;
text-align: center;
color: #777;
bottom:0px;
left:0;
width:100%;
background: #2A2A2A;
position: fixed;
}