{% load static %}

.wrapper {
          min-height: 100%;

          /* Equal to height of footer */
          /* But also accounting for potential margin-bottom of last child */
          margin-bottom: -50px;
        }
.footer,.push {
          height: 50px;
}

#myBtn {
          display: none;
          width: 60px;
          height: 60px;
          position: fixed; /* Fixed/sticky position */
          bottom: 70px; /* Place the button at the bottom of the page */
          right: 30px; /* Place the button 30px from the right */
          z-index: 99; /* Make sure it does not overlap */
          border: none; /* Remove borders */
          outline: none; /* Remove outline */
          background-color: #1d6ab2; /* Set a background color */
          color: white; /* Text color */
          cursor: pointer; /* Add a mouse pointer on hover */
          padding: 15px; /* Some padding */
          border-radius: 50%; /* Rounded corners */
          font-size: 18px; /* Increase font size */
        }

#myBtn:hover {
          background-color: #555;  /*Add a dark-grey background on hover */
        }

table, th, td {
          border-collapse: collapse;
        }
th, td {
          padding: 15px;
        }

.django-ckeditor-widget{
          width: 100%;
        }


.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}