body
{   
    margin: auto; 
    padding: auto;
    width: 100%;
    background: url(../img/book.png) ;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.intro { position: absolute; left: 0; top:20%; padding: 0 20px;  width: 100%;  text-align: center; }

h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 0.015em;
  }
  
h5 {
    font-size: 1.1rem;
  }

  .nemligja
  {
    font-size: xx-large;

  }
  .div{
      margin: 0 auto 0 auto;
      display: inline-block;
      min-width: 300px;
      min-height: 300px;
      background-color: black;
      text-align: center;
      color: white;
  }

  .btn {
    min-height: 1rem;
    max-height: 3.25rem;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.4s;
       -moz-transition: all 0.4s;
         -o-transition: all 0.4s;
            transition: all 0.4s;
  }
  .btn:hover {
    color: #000;
    border-color: #fff;
    background-color: #607d8b;
  }


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

.qr
        {
            height: 100px;
            width: 100px;        
        }
  
  
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML radio buttons */
.switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px; /* Ensure slider has rounded corners */
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%; /* Ensure slider button has rounded corners */
}

/* Change slider color when checkbox is checked */
.switch input[type="checkbox"]:checked + .slider {
  background-color: #2196F3;
}

/* Change slider button position when checkbox is checked */
.switch input[type="checkbox"]:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Increase focus shadow when focusing on the slider */
.switch input[type="checkbox"]:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}


/* ✅ Change checkbox switch color when ON (checked) */
.form-check-input.test-toggle:checked {
    background-color: #28a745 !important; /* green */
    border-color: #28a745 !important;
}

/* ❌ Change checkbox switch color when OFF (unchecked) 
.form-check-input.test-toggle:not(:checked) {
    background-color: #dc3545 !important; 
    border-color: #dc3545 !important;
} */

.sticky-toolbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

/* Sticky thead under toolbar */
.sticky-table thead th {
  position: sticky;
  top: 97px; /* Match toolbar height */
  z-index: 999;
  background-color: #f8f9fa;
  box-shadow: inset 0 -1px 0 #dee2e6;
}

.text-pink {
  color: #e83e8c !important; /* Bootstrap's pink shade */
}

input[type=date]:required:invalid::-webkit-datetime-edit {
  color: transparent;
}
input[type=date]:focus::-webkit-datetime-edit {
  color: black !important;
}

.status-bar {
  height: 6px;
  border-radius: 3px;
  margin-top: 2px;
  transition: background-color 0.3s ease;
}

/* ✅ Default Gray */
.status-gray {
  background-color: #ccc;
}

/* ✅ Green if complete */
.status-green {
  background-color: #28a745;
}

/* ✅ Bar Sizes */
.status-single {
  width: 100%;
}

.status-dual {
  width: 50%;
}