* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html, body {
    max-width: 100%;
    overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  margin: 0;
}


/* Header Styling */
header {
  position: fixed;
  top: 0;
  width: 100vw;
  max-width: 100%;
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 30px 0;
  transition: padding 0.3s ease;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo {
  height: 60px;
  transition: height 0.3s ease;
}

header h1 {
  position: absolute;
  right: 200px;
  font-size: 2.5rem;
  transition: font-size 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}


#tab-cont {
  position: relative;
  padding-top: 15vh;
  padding-left: 5%;
  padding-right: 5%;
}

#table {
  margin-top: 2rem;
}

.tabulator {
  border: 1px solid #333 !important;
  border-radius: 4px;
}

/* Button */
.button-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 16px;
}

.button-row a .fa-arrow-left {
  animation: shakeLeftRight 2s ease-in-out infinite;
}

@keyframes shakeLeftRight {
  0%, 100% { transform: translateX(-5px); }
  25% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
  75% { transform: translateX(0); }
}

.button {
  background-color: white;
  color: black;
  border: 2px solid #000000;
  text-decoration: none !important;
  transition: 0.4s;
  position: fixed;
  bottom: 11vh;
}

.button1 {
  border: 2px solid #000000;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 20px;
}

.button1:hover {
  background-color: #000000;
  color: white;
}

.button1 i {
  margin-right: 10px !important;
}

/* Footer */
footer {
  background: #000000;
  color: white;
  text-align: center;
  padding: 30px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 999;
}
