body {
  background-color: #f8f9fa;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding-bottom: 70px; /* Zorg voor voldoende ruimte onderaan */
}

.container {
  max-width: 800px;
  background: white;
  padding: 30px;
  padding-top: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Center de container */
}

.navbar {
  max-width: 800px;
  background-color: #2e3b87;
  padding: 30px;
  border: 10px;
  margin: 0 auto;
  vertical-align: middle;
}

h2,
h3,
h4,
h6 {
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  padding: 10px;
}

h3 {
  padding-top: 20px;
}

h4 {
  padding-top: 20px;
  margin-top: 40px;
}

h6 {
  font-weight: normal;
}

textarea.form-control {
  resize: none;
}

.button-add {
  width: 40px;
  margin: 0 auto; /* Hiermee wordt de knop in het midden van zijn container geplaatst */
  display: block; /* Dit zorgt ervoor dat de knop de breedte van zijn container inneemt */
}



.custom-filter-btn {
  background-color: #2e3b87;
  border: none;
}

.label {
  margin-top: 10px;
}

.section-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.form-check {
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
  display: block;
  align-items: center;
}

.form-group .form-control {
  flex: 1;
}

.table th,
.table td {
  vertical-align: middle;
  text-align: center;
}

.table td input,
.table td label {
  display: block;
  margin: auto;
  margin-bottom: 5px;
}

button.save-button,
button.opslaan-button {
  width: 100%;
  padding: 10px;
  background-color: #2e3b87;
  color: white;
  border: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border-color: #2e3b87;
}

button.save-button:hover,
button.opslaan-button:hover {
  background-color: #7b84bc;
}

button.opslaan-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 108, 150, 0.5);
}

.cancel-button {
    position: absolute;
    top: 20px;
    left: 30px;
    color: gray !important; 
    font-size: 18px;
    z-index: 999; 
    text-decoration: none;
}

.container {
    position: relative;
    padding-top: 35px; 
}

.form-header {
    padding-top: 0px; 
    margin-bottom: 10px; 
    margin-top: 5px;
}

.cancel-button a {
    color: gray !important; 
    text-decoration: none; 
}

.cancel-button a:hover {
    color: #555 !important; 
    border-radius: 15px; 
    background-color: #f0f0f0; 
    transition: all 0.3s ease; 
}

.logo {
  height: 100px;
  display: block;
  margin: 30px auto;
}

.task-container {
  margin-bottom: 10px;
}

.task-box label {
  display: block;
  margin-bottom: 5px;
}

.task-box,
.execution-box {
  position: relative;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
  padding-top: 30px;
}

.delete-task-box,
.delete-execution-box {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
}

.img_trashcan {
  width: auto;
  height: 25px;
}

#add-taakstap-row,
#add-execution-row {
  margin-bottom: 20px;
}

.dropdown-profile {
  background-color: transparent !important;
  border: none;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle::before {
  content: "\f141";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  font-weight: normal;
  margin-left: 5px;
}

.form-control {
  margin-bottom: 15px;
}

.form-header {
  margin: 20px;
}

.note {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bold;
}

label {
  margin: 0;
  color: #696969;
}

.table {
  margin-bottom: 30px;
}

.table th,
.table td {
  text-align: left;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #2e3b87;
  border-color: #2e3b87;
}

button[type="submit"]:hover {
  background-color: #0d4b7a;
}

input[type="radio"] {
  transform: scale(1.3);
}

.custom-btn-height {
  height: 37px;
}

.list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-icon {
  margin-left: 5px;
}

.arrow-up::after {
  content: "\25B2";
}

.arrow-down::after {
  content: "\25BC";
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bottom-menu {
  max-width: 800px;
  max-height: 50px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.menu-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-plus {
  margin-top: -20px;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.circle-plus {
  background-color: #2e3b87;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container::after,
.row::after {
  content: "";
  clear: both;
  display: table;
}

.menu-item {
  position: relative;
  text-align: center;
}

.form-group {
  position: relative;
}

#charcount {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0.6;
  font-size: 0.9em;
  color: #555;
  pointer-events: none; /* Prevent interaction */
}

textarea {
  padding-bottom: 30px; /* Add some padding to avoid text overlap */
}

/* Elements for the popup */

.popup {
  display: none; /* Hidden by default */
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #888;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background-color: white;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.popup-content {
  display: flex;
  align-items: center;
  border: 3px solid #ddd;
  margin-top: 20px;
}

.popup-content img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  padding: 5px;
}

.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Inlog page */
.forget-password {
    font-size: 0.95em; 
 
}

#img-fluid {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}

#signature-label {
  display: block;
}

#back-button {
  float: left;
  color: gray !important; 
  text-decoration: none; 
}

#back-button:hover {
  color: #555 !important; 
  border-radius: 15px; 
  background-color: #f0f0f0; 
  transition: all 0.3s ease; 
}

.btn-danger {
  color: black;
  background-color: white;
  border: none;
  
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: rgb(234, 231, 231) !important;
  color: black !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-annuleer {
  margin-top: -80px;
}
#edit-section .form-group {
  margin-bottom: 10px; /* Verklein de marge onder de form-groups */
}
#edit-form {
  margin-top: 0; /* Verwijder de witruimte boven de eerste form-group */
}
.text-right {
  text-align: right; /* Zorg ervoor dat de inhoud naar rechts wordt uitgelijnd */
  margin-bottom: 10px; /* Optionele marge onder de knop */
}

.btn-secondary{
  display: block;
}

/* formulier WPI*/
.text-fields-error {
  margin-bottom: -20px !important;
  margin-top: 20px;
}

/* Inlog page */
.forget-password {
  font-size: 0.95em; 

}

.inlog-container {
  max-width: 800px;
  background: white;
  padding: 5vh 30px; /* Minder padding boven en onder */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: auto; 
  height: 84vh; 
  display: block;
  flex-direction: column;
  justify-content: center;
}

.inlog-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.inlog-subtitle {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 30px;
}

#lock-timer {
  display: none;
  color: red;
  margin-top: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

.img-signature{
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.radio-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.radio-group label {
  margin-left: 5px;
  margin-right: 15px;
}

#LRMA-warning{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
  
.btn-admin {
  margin:0 auto;
    display:block;
    background-color: #0d4b7a;
    border: none;
}

.btn-admin:hover {
  background-color: #7b84bc;
}

/* Admin TBM files */
.filesTable {
  margin-top: 25px;
}

.btn-delete {
  background-color: #0d4b7a !important;
  color:white;
}

.btn-delete:hover {
  background-color: #7b84bc !important;
  color:white
}

.stick{
    display: flex;
    align-items: center;
}

.cancel-button-ww{
    align-self: flex-start; /* Voor linkse uitlijning */
    /* Voor centreren kun je het volgende gebruiken: */
    /* align-self: center; */
    margin-bottom: 20px;
    color: gray !important; 
    font-size: 18px;
    z-index: 999; 
    text-decoration: none;

}