.copy-icon{position:absolute;top:8px;right:8px;cursor:pointer}.btn-custom,.btn-custom-2{border:none}.btn-custom i,.btn-custom-2 i{color:#007bff;transition:color .3s ease-in-out}.btn-custom:hover i{color:#dc3545}.btn-custom-2:hover i{color:green}



/* ==========================
   Footer Styling
   ========================== */
.footer {
  background: #0d1117;
  color: #adb5bd;
  font-size: 0.95rem;
}

.footer a {
  color: #adb5bd;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #0dcaf0; /* Bootstrap info color */
  text-decoration: none;
}

.footer i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer i:hover {
  transform: translateY(-3px);
  color: #0dcaf0;
}

/* ==========================
   Sticky Footer Layout
   ========================== */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1 0 auto; /* pushes footer down if content is short */
}

footer.footer,
footer {
  flex-shrink: 0;
}

