body {
    padding-top: 110px;
  }

  .fixed-top-2 {
    margin-top: 48px;
  }

  @media (min-width: 992px) {
    body {
      padding-top: 110px;
    }
    html {
      font-size: 14px;
    }
  }

#id_search {
    width: 200px;
    margin-right: 3px;
}



/* ##############################################################################################################################
##############################################################################################################################
When image is clicked it is shown in it's full size. When a user clicks again it is returned back to normal.
############################################################################################################################## */

 /* Style the Image Used to Trigger the Modal */
 #myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  color: #f1f1f1;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
      width: 100%;
  }
} 



/* ##############################################################################################################################
##############################################################################################################################
Multilevel drop-down menus.
############################################################################################################################## */
.dropdown-submenu {
  position: relative;
  width: 100%;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0px;
  margin-left: 1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  width: 250%;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: 10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.scrollable-menu {
  height: auto;
  max-height: 600px;
  overflow-x: hidden;
}

/* ##############################################################################################################################
##############################################################################################################################
Code color
############################################################################################################################## */

code {
  font-size: 90%;
  font-family: monospace, monospace;
  color: #000;
  background-color: #f9f2f4;
  border-radius: 2px;
  word-break: break-word;
}

#im_icon { 
  height: 50px; 
  width: 100px; 
  overflow: hidden; 
}

.table-container {
  font-size: 13px;
}

.table-input {
  font-size: 13px;
  padding-bottom: 1%;
  padding-top: 1%;
  padding-left: 5%;
  padding-right: 3%;
}

/* ##############################################################################################################################
##############################################################################################################################
############################################################################################################################## */

.prikaz {
  background-color: transparent;
}


.modal-backdrop {
  /* bug fix - no overlay */    
  display: none;    
}


.test-assignment-button {
  width: 70px; /* Adjust based on your needs */
  height: 70px; /* Adjust based on your needs */
  border-radius: 50%; /* Makes the div circular */
  overflow: hidden; /* Ensures the image doesn't escape the circle */
  position: fixed; /* Keeps the circle fixed during scrolling */
  top: 70px; /* Distance from the top */
  right: 30px; /* Distance from the right */
  border: 2px solid #fff; /* Optional: adds a border around the circle */
  box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* Optional: adds shadow for better visibility */
  z-index: 1000; /* Ensures the circle is on top of everything */
}

.test-assignment-button img {
  width: 100%; /* Ensure the image covers the circle area */
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area, cropping if necessary */
}

/* LADISK News Feed - Responsive iframe */
@media (max-width: 768px) {
	.card-body iframe {
		height: 500px;
	}
}