@font-face {
  font-display: swap;
  font-family: 'Trajan Pro';
  font-weight: normal;
  font-style: normal;
  src: url('fonts/TrajanPro-Regular.ttf') format('truetype');
}

body {
  align-items: center;
  background-color: #1a1a1a;
  color: #e0e0e0;
  display: flex;
  font-family: 'Inter', -apple-system, sans-serif;
  /* height: 100vh; */
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  /* width: 100%; */
}

.container-logo {

  text-align: center;
}

/* form, table {
  background-color: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: auto;
  padding: 20px;
} */

.form-hidden {
  background-color: transparent;
  border-radius: 0px;
  box-shadow: none;
  padding: 0;
}

label {
  color: #e0e0e0;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"], input[type="email"] {
  background-color: #333;
  border: 1px solid #444;
  border-radius: 4px;
  color: #e0e0e0;
  margin-bottom: 15px;
  padding: 10px;
  width: 97%;
}

table {
  border-collapse: collapse;
  margin-bottom: 20px;
  width: 100%;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #3a3a3a;
  color: #e0e0e0;
}

.customtabletr {
  border-collapse: collapse;
  margin-bottom: 20px;
  max-width: 800px;
  width: 100%;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #3a3a3a;
  color: #e0e0e0;
}

.customtable tr:hover {
  background-color: #4b2048;
}

a {
  color: #ff6666;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.delete-user {
  color: #b30000;
  margin-left: 10px;
}

.delete-user:hover {
  text-decoration: underline;
} 

.title {
  font-family: 'Trajan Pro', serif;
  font-size: 48x;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 25px;
}

@media screen and (max-width: 650px) {
  .title {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 12px;
  }
  .logo-tst {
    width: 140px;
    height: 140px;
  }
}

@media screen and (max-width: 550px) {
  .title {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 12px;
  }
  .logo-tst {
    width: 140px;
    height: 140px;
  }
}

@media screen and (max-width: 460px) {
  .title {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 12px;
  }
  .logo-tst {
    width: 140px;
    height: 140px;
  }
}

@media screen and (max-width: 390px) {
  .title {
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 12px;
  }
  .logo-tst {
    width: 140px;
    height: 140px;
  }
}


/* Utility Classes */
.checkmark {
  color: #4CAF50;
  font-size: 1.2em;
}

.button {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.button-alert {
  background-color: #ff4444;
  color: white;
}

.button-alert:hover {
  background-color: #ff6666;
}

.button-logout {
  background-color: #cccccc;
  border-radius: 4px;
  color: #000000;
  display: inline-block;
  /*margin-top: 15px;*/
  padding: 8px;
  text-decoration: none;
}

.button-logout:hover {
  background-color: #cccccc;
  box-shadow: 0 0 15px #bda76a;
}

.button-primary {
  background-color: grey;
  color: white;
}

.button-primary:hover {
  background-color: green;
  box-shadow: 0 0 15px lightgreen;
}

.button-sign {
  background-color: #ff4444;
  border-radius: 4px;
  color: white;
  display: inline-block;
  font-weight: bold;
  padding: 6px 6px;
  text-decoration: none;
}