body {
font-family: 'Poppins';
background-image: url(../../mudi_files/n1Q7gT.jpg);
background-repeat: no-repeat;
background-size:  cover;
background-position: center;
}
.xsl-box {
margin-top: 90px; 
background: #e2e2e2; 
padding: 20px;
margin-bottom: 90px;
} 
#outputContainer {
max-height: 80vh;
overflow: auto;
background: white;
padding: 10px;
border: 1px solid #ccc;
min-width: fit-content;
min-height: 200px;
}
/*start nav*/
nav {
  background-color: #982a2a;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.badge-crimson {
    background-color: crimson;
    position: absolute;
    font-size: 0.7rem;
    margin-top: -3px;
    margin-right: -3px;
}
.logo {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: bold;
  color: white;
}

.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mini-nav {
  background: linear-gradient(-45deg, #004e92, #000428, #004e92, #000428);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  border-radius: 50px;
  padding: 0.5rem;
  margin: 1rem;
}

.mini-nav a {
  color: white;
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.mini-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Custom tooltip */
.tooltip-inner {
  background-color: black !important;
  color: white !important;
  font-size: 0.875rem;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: black !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: black !important;
}
a.rewrite-btn {
  background-color: orange;
  color: black;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

@media (max-width: 1054px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #982a2a;
    margin-top: 10px;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .menu a, .rewrite-btn {
    padding: 10px 15px;
    width: 100%;
    display: block;
  }
}

/*end nav*/
table {
  /*border-collapse: collapse;*/
  width: 100%;
  /*table-layout: fixed;*/
  overflow-x: auto;
}
table td, table th {
  border: 1px solid #aaa;
  padding: 5px;
  position: relative;
  overflow-x: auto;
}
.controls { margin-bottom: 15px; }

/* Resizer style */
.resizer-col {
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 100%;
  cursor: col-resize;
  user-select: none;
}
.resizer-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  cursor: row-resize;
  user-select: none;
}
/*end container*/
    .footer {
  background-color: #111;
  color: #e0e0e0;
  padding: 40px 20px;
}

.footer a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .logo {
  font-family: 'Georgia', cursive;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
}

.footer .section-title {
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer .text-end {
    text-align: start !important;
    margin-top: 20px;
  }
}