body { 
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #ffffff;
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-size: 100% 100%;
  background-position:center; 
  width:100%; height:100%; 
  overflow:sroll;
  line-height: 1.5;
}
table {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
}
th, td {
  border: 0px;
  padding: 5px;
}

th {
  background-color: hwb(60 71% 0%);
  color: rgb(0, 0, 0);
}
.btn-start { 
  padding: 10px 20px; 
  background-color: green; color: white; 
}
.btn-black { 
  padding: 10px 20px; 
  background-color: rgb(0, 0, 0); color: white; 
}
.header {
  background-color:rgb(151, 89, 127);
  color: white;
  padding: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header img {
  width: 50px;  /* Harus sama dengan height */
  height: 50px; /* Harus sama dengan width */
  object-fit: cover; /* Mencegah gambar terdistorsi */
  cursor: pointer;
}
.header-text {
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}
.iframe-container {
  width: 100%;
  height: calc(100vh - 80px); /* Menyesuaikan tinggi layar */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(233, 243, 184, 0.2);
}
.card-margin {
  margin-bottom: .7;
}

.card {
  border: 0;
  box-shadow: 5px 5px 10px 5px rgba(82, 63, 105, 0.1);
  -webkit-box-shadow: 5px 5px 10px 5px rgba(82, 63, 105, 0.1);
  -moz-box-shadow: 5px 5px 10px 5px rgba(82, 63, 105, 0.1);
  -ms-box-shadow: 5px 5px 10px 5px rgba(82, 63, 105, 0.1);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #e6e4e9;
  border-radius: 8px;
}

.card .card-header.no-border {
  border: 0;
}
.card .card-header {
  background: none;
  padding: 0 0.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  min-height: 10px;
}
.card-header:first-child {
  border-radius: calc(8px - 1px) calc(8px - 1px) 0 0;
}

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  display: none;
}

#cookie-consent-banner a {
  color: #f7b42c;
  text-decoration: none;
}

#accept-cookies {
  background-color: #f7b42c;
  color: white;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
}

/* CSS untuk memastikan modal berada di atas backdrop */
.modal-backdrop {
  z-index: 1040 !important; /* Memberikan z-index lebih rendah untuk backdrop */
}

.modal {
  z-index: 1050 !important; /* Memberikan z-index lebih tinggi untuk modal */
}

.profile-pic {
  border-radius: 50%;
  object-fit: cover;
  padding: 10px;
  border: 2px solid black;
  box-sizing: border-box; /* Pastikan ukuran tetap 150x150px */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease-in-out;
  display: block;  /* Menghilangkan whitespace bawah */
  margin: auto;
}

.profile-pic:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

html, body {
  overscroll-behavior: none;
}

.logo-text {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #007bff, #00c853);
  
  /* Standard property */
  background-clip: text;
  
  /* Vendor prefixes for compatibility */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Required for WebKit browsers */
  
  /* Alternative for Firefox */
  color: transparent;
  mask-image: linear-gradient(45deg, #007bff, #00c853);
  -webkit-mask-image: linear-gradient(45deg, #007bff, #00c853);
}

.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: rgba(255, 0, 0, 0.3);
  pointer-events: none;
}

  /* Mengaktifkan dropdown submenu */
  .dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}
