body {
    background-color: #fefefe;
    font-family: 'Roboto', sans-serif;
}

.create-btn {
  margin-right: 10px;
}

.btn:disabled {
  opacity: 0.1;
}

.navbar-brand {
  font-size: 22px;
  margin-left: 0.5rem;
}
.navbar {
  background-color:#032D5D !important;
}
.table-dark {
    --bs-table-bg: #032D5D;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e;
}

.right-align {
  text-align: right;
}

/* Add the following CSS */
.table-bordered {
  border-color: #032D5D;
  border-width: 10px; /* Adjust the border width as desired */
}

.disabled {
  pointer-events: none;
  opacity: 0.25;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

h1 {
    text-align: center;
}

.spinner-container {

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.finished-container {
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.elapsed-time {
    text-align: center;
    font-size: 2em;
    margin-top: 1em;
}

.status {
    text-align: center;
    font-size: 2em;
    margin-top: 1em;
}

.alert {
    text-align: center;
}

.button-spacing {
  margin-left: 10px;
}

.filter-row {
  display: flex;
  justify-content: space-between;
}
.filter-row .col-md-4 {
  flex-basis: calc(33.33% - 10px); /* 33.33% width with 10px spacing */
  margin-right: 10px;
}

.demo-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.font-500{
    font-weight:500;
    color: white;
}

#errordialog {
    color: red;
}

.login-container {
    background-color: #032D5D !important;
}

.login-container h1, .login-container p {
    color: #fff;
}

a.standard-link, a.standard-link:link, a.standard-link:active, a.standard-link:visited {
    color: #065ABA;
    text-decoration: underline;
}
a.standard-link:hover {
    color: #032D5D;
    text-decoration: underline;
}
