body {
    background-color: powderblue;
  }
.f1{
    width: 80%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    text-align: center;
    margin-top: 5;
}
.f2{
    width: 90%;
    position: sticky;
    top: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.ad{
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 179, 0, 0.08) 0px 1px 0px inset;
    border-radius: 0 0 10px 10px;
    z-index: 99999;
}
.f3{
    width: 90%;
    top: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.f4{
  width: 65%;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* TOGGLE */



/* BUTTON */
/* delete */
.btn_del {
  line-height: 0px;
  height: 15px;
  width: 50px;
  cursor: pointer;
}
.btn_del-two {
  color: rgb(103, 3, 3);
  transition: all 0.5s;
  position: relative; 
}
.btn_del-two span {
  z-index: 2; 
  display: block;
  position: absolute;
  width: 100%;
  height: 100%; 
  top: 10px;
  left: 10px;
}
.btn_del-two::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.btn_del-two::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.btn_del-two:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 7px;
}
.btn_del-two:hover::after {
  transform: rotate(45deg);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 7px;
}

/* edit */
.btn_ed {
  line-height: 0px;
  height: 15px;
  width: 50px;
  cursor: pointer;
}
.btn_ed-two {
  color: rgb(50, 103, 3);
  transition: all 0.5s;
  position: relative; 
}
.btn_ed-two span {
  z-index: 2; 
  display: block;
  position: absolute;
  width: 100%;
  height: 100%; 
  top: 10px;
  left: 10px;
}
.btn_ed-two::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.btn_ed-two::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.btn_ed-two:hover::before {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 7px;
  margin-right: 20px;
  top: 0px;
}
.btn_ed-two:hover::after {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 7px;
  top:8px;
}


/* ===== */
td, tr{
  transition: all 1s;
}
.new_{
  position: absolute;
  font-size:10px;
  color: brown;
  padding-top: -5px;
  padding-left: 2px;
  padding-right: 2px;
}

.grey{
  color: rgb(93, 93, 93);
}

sup {
  position: relative;
  top: -0.7em;
  font-size: 0.7em;
  margin-right: -0.5em;
  color: gray;
}

sop {
  position: relative;
  top: +0.3em;
  font-size: 0.7em;
  color: green;
}

a.custom-link {
  color: green !important;
  font-weight: normal;
  line-height: 1;
}
a.custom-link2 {
  color: rgb(100, 118, 100) !important;
  font-weight: normal;
  line-height: 1;
}

.custom-row {
  border-bottom: 2px solid rgb(137, 63, 63);
}

/* Style the dropdown button */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the dropdown content (hidden by default) */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the dropdown content */
.dropdown-content {
  position: fixed;
  top: 50px; /* Adjust as needed to position the dropdown */
  left: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the buttons inside the dropdown */
.dropdown-content button {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 8px 16px;
  cursor: pointer;
}

/* Change background color of dropdown buttons on hover */
.dropdown-content button:hover {
  background-color: #f1f1f1;
}

.table-hover tbody tr:hover {
  background-color: #abd4d3; /* Change this color to whatever you like */
}


