body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: rgb(163, 208, 219);
  background: linear-gradient(
    227deg,
    rgb(51, 99, 111) 0%,
    rgba(163, 176, 219, 1) 20%,
    rgba(163, 173, 219, 1) 34%,
    rgba(163, 219, 208, 1) 59%,
    rgba(163, 208, 219, 1) 74%,
    rgba(163, 208, 219, 1) 100%
  );
}

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

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

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #28a745;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-container,
.link-container,
.auth-container {
  display: flex;
  align-items: center;
}

.brand-container a,
.link-container a,
.user-info,
.logout-button form,
.auth-buttons a {
  color: #ffffff;
  margin-right: 20px;
  font-weight: bold;
  font-size: 20px;
}

.link-container {
  flex: 1;
  text-align: center;
}

.link-container a {
  margin-right: auto;
  margin-left: auto;
}

main {
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
  background-color: #000000;
  margin-top: 60px;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

.poll-status-box {
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #333;
  border-radius: 5px;
}

.poll-status-label {
  font-weight: bold;
  margin-right: 10px;
}

.poll-status-true {
  background-color: green;
  color: white;
  font-weight: bold;
}

.poll-status-false {
  background-color: red;
  color: white;
  font-weight: bold;
}


.poll-status-delete-hidden,
.poll-deleted-header-hidden {
  display: none;
}

.poll-status-delete-shown,
.poll-deleted-header-shown {
  color: white;
  font-weight: bold;
  display: table-cell;
}

.navbar-fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar-brand {
  margin-right: auto;
}

.auth-container {
  display: flex;
  align-items: center;
}

.user-info {
  margin-right: 10px;
}

.logout-button {
  margin-right: 10px;
}


.btn {
  margin-left: 5px;
}


.navbar-dark.bg-success {
  background-color: green;
}
