/* Global HTML */
body {
  background: white;
  width: 99%;
  padding: 10px;
  margin: 10px auto;
  font-family: Helvetica, Arial, sans-serif;
}

header {
  clear: left;
  text-align: center;
}

/* General Form */
.legend{
  font-weight:bold;
  font-size:14px;
}
label{
  font-weight:bold;
}
input {
  text-align: center;
}
li {
  text-align: left;
}

/* DIV */
div.content {
  background: white;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* Tables */
table {
  border-collapse: collapse;
}
th {
  text-align: center;
}
td {
  text-align: center;
  font-size: 12px;
}

/* Dark theme (User Profile > Theme).
   Bootstrap components (tables, dropdowns, pagination, cards, forms, ...)
   are themed via the [data-bs-theme=dark] attribute set in base.html, not here.
   This block only covers our own non-Bootstrap styling (plain body/div.content). */
body.dark-theme {
  background: #121212;
  color: #e8e8e8;
}
body.dark-theme div.content {
  background: #121212;
}

/* To check usage of */
.pagination {
    margin: auto;
    width: 95%;
    text-align: center;
    padding: 10px;
}
.center {
  margin: auto;
  width: 50%;
}
