body,
html {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e0e0e0;
  text-align: center;
  padding-top: 10px; /* Sesuaikan nilai ini dengan tinggi header */
}

header {
  background-color: #ffffff;
  padding: 10px 10px;
  border-bottom: 0px solid #1f1209;
  box-shadow: 0 10px 10px -10px #333;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  align-items: center;     /* Vertikal rata tengah */
}

.auth-buttons-left {
  color: #000000;
  padding: 4px;
  list-style-type: none;
  border: 1px solid #afafaf;
  border-radius: 4px;
  float: left; /* Biar menempel ke kiri */
}


.auth-buttons {
  color: #000000;
  list-style-type: none;
  padding: 10px;
  margin: 0;
  border: 1px solid #afafaf;
  border-radius: 10px;
  transition: background 0.3s, border 0.3s;
  font-weight: bold;
}

.auth-buttonsx {
  color: #000000;
  list-style-type: none;
  padding: 10px;
  margin-left: -10px; 
  margin: 0;
  /*border: 1px solid #afafaf;*/
  /*border-radius: 10px;*/
  transition: background 0.3s, border 0.3s;
  font-weight: bold;
  float: left; /* Biar menempel ke kiri */
}

.sebelah-kiri {
  display: flex;
  align-items: center;
  gap: 0;
}

.auth-buttons button {
  padding: 5px 15px;
  font-size: 14px;
  cursor: pointer;
}

main {
  flex: 1;
}

.split-pdf {
  padding: 50px;
}

.split-pdf h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.split-pdf p {
  font-size: 16px;
  color: #454545;
  margin-bottom: 10px;
}

.select-pdf {
  background-color: #0000ff;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 23px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

footer {
  margin-top: 10px;
  background-color: #e0e0e0;
  border-top: 1px solid #e0e0e0;
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #454545;
}

.drop-container {
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #454545;
  cursor: pointer;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}

li,
.auth-buttons,
.menu-item > a,
.dropdown a {
  transition: background 0.3s, border 0.3s, color 0.3s;
}

li {
  list-style-type: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

li:hover {
  background-color: #afafaf;
  border-color: #777;
  color: #ffffff;
}

h1 {
  text-align: center;
  color: #444;
}

table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
  color: #333;
}

tr:hover {
  background-color: #f1f1f1;
}

nav {
  display: flex;
  justify-content: space-between;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.menu-item {
  position: relative;
}

.menu-item > a {
  color: #000000;
  text-decoration: none;
  padding: 0px 0px;
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  list-style: square;
  padding: 0;
  margin: 0;
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0 20px 20px -20px #333;
}

.dropdown a {
  color: #000000;
  text-decoration: none;
  display: block;
}

.menu-item:hover .dropdown {
  display: block;
}

.box-info {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 800px;
}

.box-info h2,
.box-info h3 {
  margin-top: 0;
  color: #333;
}

.box-info ul {
  padding-left: 20px;
}

.box-info li {
  margin-bottom: 6px;
}

.box-info a {
  color: #007acc;
  text-decoration: none;
}

.box-info a:hover {
  text-decoration: underline;
}

.tentang-section {
  background-color: #f0f8ff;
  color: white;
  padding: 30px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tentang-section h2 {
  margin-top: 0;
  color: #fff;
  font-size: 28px;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
}

.fitur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fitur-box {
  background-color: #005fa3;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.fitur-box a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fitur-box:hover {
  background-color: #006fbf;
  transform: translateY(-3px);
}

.icon {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}


.submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  background-color: #1d00fc;
  border-radius: 8px;
  padding: 10px 16px;
  width: fit-content;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-wrapper:hover {
  background-color: #1c009a;
}

.submit-wrapper .arrow-down {
  width: 28px;
  height: 28px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.submit-wrapper .arrow-down path {
  fill: #fff;
}

.submit-wrapper .select-pdf {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.submit-wrapper .select-pdf:hover {
  text-decoration: underline;
}

.split-pdf {
  text-align: center;
  padding: 40px 20px;
}

.split-pdf form {
  display: inline-block;
}

.tentang-section,
.tentang-section p,
.tentang-section li,
.tentang-section a,
.tentang-section h2,
.tentang-section h3 {
  color: black !important;
}


.count-up {
  animation: scaleUp 0.6s ease-in-out;
  color: #00aaff;
}

@keyframes scaleUp {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
