/* STILE LISTA CLIENTI */
body {
  background: url('/static/immagini/sfondoapp1.png') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #0056B3;
  -webkit-text-stroke: 2px #F7941D;
  text-stroke: 2px #F7941D;
  font-size: 40px;
  font-weight: bold;
}

/* HEADER */
.header {
  background-color: transparent;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header img {
  height: 60px;
  max-width: 100%;
}

/* CONTAINER */
.container {
  padding: 30px;
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TESTI GENERALI */
h2, a.client-button {
  color: #0056B3;
  -webkit-text-stroke: 2px #F7941D;
  text-stroke: 2px #F7941D;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  background-color: transparent;
}

/* BOTTONE ELIMINA */
.elimina-btn {
  background-color: #D32F2F;
  color: white !important;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: normal;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.elimina-btn:hover {
  background-color: #B71C1C;
}
