<style>
.pagination {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pagination button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.pagination button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination button:hover {
  background-color: #45a049;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.pagination button:active {
  background-color: #3e8e41;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.pagination span {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 5px;
  margin: 0 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pagination span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: left 0.3s ease;
  z-index: 1;
}

.pagination span:hover::before {
  left: 0;
}

.pagination span:hover {
  background-color: #ddd;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination button {
  margin: 5px;
}

.pagination span {
  margin: 5px;
}

.pagination .active {
  background-color: #4CAF50;
  color: #fff;
}

.pagination .ellipsis {
  padding: 0 10px;
  cursor: default;
}

.pagination .disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination .previous,
.pagination .next {
  background-color: #ddd;
  color: #333;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.pagination .previous::before,
.pagination .next::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: left 0.3s ease;
  z-index: 1;
}

.pagination .previous:hover::before,
.pagination .next:hover::before {
  left: 0;
}

.pagination .previous:hover,
.pagination .next:hover {
  background-color: #b3b3b3;
}

.pagination .previous:active,
.pagination .next:active {
  background-color: #999;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#searchInput1 {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  width: 300px;
  background-color: #f1f1f1;
}

#searchInput1:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.search-icon svg {
  fill: #777;
  transition: fill 0.3s ease;
}

#searchInput1:not(:placeholder-shown) + .search-icon {
  opacity: 1;
}

#searchInput1:not(:placeholder-shown) + .search-icon svg {
  fill: #4CAF50;
}

#searchInput2 {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  width: 300px;
  background-color: #f1f1f1;
}

#searchInput2:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
#searchInput2:not(:placeholder-shown) + .search-icon {
  opacity: 1;
}

#searchInput2:not(:placeholder-shown) + .search-icon svg {
  fill: #4CAF50;
}
#searchInput3 {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  width: 300px;
  background-color: #f1f1f1;
}

#searchInput3:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
#searchInput3:not(:placeholder-shown) + .search-icon {
  opacity: 1;
}

#searchInput3:not(:placeholder-shown) + .search-icon svg {
  fill: #4CAF50;
}

.form-mimpi {
  text-align: center;
  margin-bottom: 20px;
}

.Text-Content3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cool-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cool-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: left 0.3s ease;
  z-index: -1;
}

.cool-button:hover::before {
  left: 0;
}

.cool-button:hover {
  background-color: #45a049;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.cool-button:active {
  background-color: #3e8e41;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.cool-button span {
  position: relative;
  z-index: 2;
}

.cool-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.cool-button:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cool-button:active::after {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}


    .none{
        margin-left : 100px;
    }
        /* CSS untuk mempercantik input search */
    .search-container {
        position: relative;
        display: inline-block;
        width: 300px;
    }

    .search-input {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        width: 100%;
        font-size: 16px;
        outline: none;
    }

    .search-icon {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        color: #999;
        cursor: pointer;
    }

    .search-icon:hover {
        color: #333;
    }
.loading {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
</style>
    <style amp-custom>
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUZiZQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: 0;
}

amp-script {
    opacity: 1;
}

amp-img {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    background-color: #0F0D0D;
    scroll-behavior: smooth;
    font-family: 'Oswald', sans-serif;
}

.Banner {
    width: 70%;
    text-align: center;
    padding: 10px 0;
    margin: auto;

}

.Banner img {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #fff;
    margin-right: -1.85px;
    margin-left: -1.85px;
}


/* ============================= Start NavBar ============================= */
.container-navbar {
    width: 70%;
    margin:auto;
    text-align: center;
}

.navbar {
    font-family: verdana;
    width: 100%;
    margin: auto;
    float: left;
    color: #fff;
    border: 3px solid #fff;
    background: -webkit-linear-gradient(top, #F6BE00 20%, #FFD700 50%, #F6BE00 100%);
}
.wrap {
    font-family: verdana;
    width: 100%;
    margin-left: auto;
    float: left;
    color: #fff;
    background-color: #420202;
}

.navbar a {
    color: #000000;
    font-weight: bold;
    margin: auto;
    text-align: center;
    text-decoration: none;
}

.dropdown {
    width: 13.5%;
    margin: auto;
    text-align: center;
    float: left;
    overflow: hidden;
    color: #000000;
}

.Alternativ {
    width: 18.8%;
}

.dropdown .dropbtn {
    width: 100%;
    font-size: 14px;
    border: none;
    outline: none;
    font-weight: bold;
    padding: 14px 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    cursor: pointer;
    background-color: #F6BE00;
    transition: 0.45s;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 100%;
    max-width: 100%;
    left: 0;
    z-index: 1;
}

.dropdown-content a {
    background-color: #000000;
    text-align: center;
    font-size: 15px;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    border: 2px solid #FFD700;
}

.dropdown-content a:hover {
    cursor: pointer;
    background-color: #FFD700;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.kolom {
    float: left;
    width: 20%;
    display: block;
}

/* ============================= End NavBar ============================= */

.Logo-Brand {
    margin: auto;
    text-align: center;
    background-color: #F5F5F5;
}

.Invoke-Main {
    font-family: 'Oswald', sans-serif;
    width: 70%;
    margin: auto;
    text-align: center;
}

.Text-Head1 {
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.Text-Head2 {
    margin-top: 1%;
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.Text-Content1 {
    margin-top: 10px;
    line-height: 1.4;
    font-size: 18px;
    text-align: justify;
    color: #fff;
}

.Text-Content2 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
    text-align: justify;
    color: #fff;
}

.FWB {
    letter-spacing: 1px;
    color: red;
    font-size: 20px;
}

.FWB a {
    color: #FF541F;
    text-decoration: none;
}

.Button-Position {
    text-align: left;
}

.Button-Mode {
    position: absolute;
    cursor: pointer;
    margin-left: 1.8%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #E5F1FF;
    width: 15%;
    border: 1px solid #E5F1FF;
    padding: 8px 5px 8px 5px;
    background: #420202;
    border-radius: 15px;
}

.Button-Mode:hover {
    background-color: #C70000;
}

.Selection {
    margin: auto;
    text-align: center;
}

.Selection select {
    font-size: 15px;
    text-align-last: center;
    text-transform: uppercase;
    Color: white;
    width: 25%;
    border: 2px solid #fff;
    background-color: #1F1212;
    padding: 10px 5px 10px 5px;
}

.Global-Container {
    width: 70%;
    margin: auto;
}

/* ++++++++++++++++START TABLE++++++++++++++++ */

.TableKeluaran {
  width: 100%;
  margin: auto;
  text-align: center;
  border-spacing: 0;
  border-collapse: collapse;
}

.KeluaranName {
  font-size: 30px;
  margin: auto;
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
  padding: 10px 0;
  background-color: #022142;
}

.TableKeluaran th,
.TableKeluaran td {
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
}

.TableKeluaran th {
  font-weight: bold;
}

.TableKeluaran td:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.TableKeluaran td:hover:before {
  opacity: 0.1;
}

.TableKeluaran tr:nth-child(even) {
  background-color: #f2f2f2;
}

.TableKeluaran tr:hover {
  background-color: #d4d4d4;
}

.TableKeluaran thead {
  background-color: #022142;
}

.TableKeluaran thead th {
  color: #fff;
}

.TableKeluaran tbody tr:nth-child(even) {
  background-color: #fff;
}

.TableKeluaran tbody tr:hover {
  background-color: #eaeaea;
}

.KeluaranHeader,
.KeluaranHeader2,
.KeluaranHeader3 {
  color: #000000;
  font-size: 20px;
  padding: 10px 0;
  background: -webkit-linear-gradient(top, #F6BE00 20%, #FFD700 50%, #F6BE00 100%);
}

.KeluaranBody,
.KeluaranBody2,
.KeluaranBody3 {
  color: #F6BE00;
  font-size: 18px;
  padding: 10px 0;
}

.KeluaranBody {
  background-color: #252525;
}

.KeluaranBody2 {
  background-color: #252525;
}

.KeluaranBody3 {
  background-color: #424242;
}

.Size1 {
  width: 5%;
}

.Size2 {
  width: 40%;
}

.Size3 {
  width: 20%;
}

.Size4 {
  width: 20%;
}


/* +++++++++++++END TABLE+++++++++++++++++++ */
.HeaderName {
    font-size: 25px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 10px 0px 0px 0px;
    text-transform: uppercase;
    border-radius: 25px 25px 0 0;
}

.HeaderName a {
    color: #fff;
    text-decoration: none;
}

.HeaderDate {
    font-size: 20px;
    text-align: center;
    padding: 2px 0px 0px 0px;
}

.HeaderHour {
    font-size: 15px;
    text-align: center;
    padding: 2px 0px 10px 0px;
    border-bottom: 2px solid #E5F1FF;
}

.KepalaHasil {
    font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 5px 0px 5px 0px;
    border-top: 2px solid #E5F1FF;
    border-bottom: 2px solid #E5F1FF;
}

.KotakHasil {
    font-size: 40px;
    color: #000000;
    text-align: center;
    padding: 5px 0px 5px 0px;
    background-color: #ffffff;
    border-top: 2px solid #420202;
    border-bottom: 2px solid #420202;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 30px 60px -18px inset;
}

.KotakHasil a {
    color: #fff;
    text-decoration: none;
}

.KotakHasil2 {
    font-size: 20px;
    color: #fff;
    padding: 5px 0 5px 0;
    text-align: center;
}

.KotakHasil3 {
    font-size: 20px;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 0 5px 0;
    text-align: center;
}

.Mode-Table {
    width: 100%;
    margin: auto;
    padding: 10px 0px 10px 0px;
    text-align: center;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: none;

}

.Mode-Kepala-Color {
    background-color: #b00d1e;
}

.Mode-Table tr:nth-child(2n) td:nth-child(odd) {
    background-color: #252525;
}

.Mode-Table tr:nth-child(2n) td:nth-child(even) {
    background-color: #252525;
}

.Mode-Kepala-Table {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 0px 15px 0px;
    border: 1px solid #fff;
}

.Mode-Kepala-Agent {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 0px 15px 0px;
    border: 1px solid #fff;

}

.Mode-Table-Result {
    padding: 12px 0px 12px 0px;
    border: 1px solid #fff;
    background-color: #414141;
    font-size: 18px;
    font-weight: bold;
}


.Mode-Table-Result2 {
    padding: 12px 0px 12px 0px;
    border: 1px solid #fff;
    background-color: #414141;
    font-size: 23px;
    font-weight: bold;
}

.Mode-Result-Agent {
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #fff;
    padding: 12px 0px 12px 0px;
}

.Invoke-BoCo {
    color: #000;
}

.Invoke-BoCoDepox {
    color: #fff;
    display: block;
}

.Invoke-BoCo2 {
    color: #fff;
}

.Market-Color {
    color: yellow;
    /* color: #3EFFED; */
    letter-spacing: 2px;
    font-weight: bold;
}

.Invoke-Agent-Table {
    margin: auto;
    text-align: center;
    width: 100%;
    table-layout: fixed;
    border-spacing: none;
    border-collapse: collapse;
    border: 1.5px solid #fff;
}

.Invoke-Agent-Table tr:nth-child(2) td:nth-child(3) {
    color: black;
}

.Invoke-Agent-Table tr:nth-child(3) td:nth-child(3) {
    color: black;
}

.Invoke-Agent-Table tr:nth-child(4) td:nth-child(3) {
    color: black;
}

.Invoke-Agent-Table tr:nth-child(2) {
    background-color: #E12C2E;
}

.Invoke-Agent-Table tr:nth-child(3) {
    background-color: #ff6600;
}

.Invoke-Agent-Table tr:nth-child(4) {
    background-color: #ffaf01;
}

.Invoke-Agent-Table tr:nth-child(n+5) {
    background-color: #252525;
}

/* .Invoke-Agent-Table tr:nth-child(2) td:nth-child(3){
        color : #fff;
    } */

.Agent-Color {
    background-color: #420202;
}

.Agent-ColorDepox {
    display: block;
    background-color: #420202;
}

.Agent-Rank {
    width: 6.5%;
}

.Invoke-Button-Border {
    border: 1px solid #fff;
    /* background-color: #252525; */
}

.Invoke-Agent-Button {
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
    color: #000;
    width: 50%;
    padding: 5px 0 5px 0;
    border-radius: 8px;
    background-color: #c4dbf6;
}

.Invoke-Agent-Button:hover {
    background-color: #007CC7;
    transition-duration: 350ms;
}

.StarColor {
    color: yellow;
}
.Box-Container {
  margin: auto;
  width: 50%;
  border: 5px solid #f4f4f4;
  border-radius: 15px;
  background-color: #f4f4f4;
}
.Bottom-Box {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 0 0 0 15px;
}

.Left-Box {
  width: 25%;
  margin: auto;
  padding: 60px 0 60px 0;
  text-align: center;
  border-radius: 15px 0 0 15px;
  background-color: #000000;
}

.Right-Box {
  width: 75%;
  margin: auto;
  text-align: center;
  border-radius: 15px;
  font-weight: bold;
  background-color: #f4f4f4;
  color: #000;
}

.Header-Name {
  font-size: 35px;
  color: red;
}

.Date {
  font-size: 25px;
}

.Hour {
  font-size: 18px;
  margin-bottom: 2.5%;
}

.Result {
  font-size: 45px;
  font-weight: bold;
  color: #f4f4f4;
  text-align: center;
  width: 50%;
  margin: auto;
  border-radius: 50px;
  letter-spacing: 2px;
  padding-bottom: 5px;
  border: 1px solid #fff;
  background-color: #202020;
  margin-bottom: 2.5%;
}



.Logo-Pasaran {
  padding: 45px;
  max-width: 100%;
  max-height: 95px;
}


.Result {
  font-size: 45px;
  font-weight: bold;
  color: #f4f4f4;
  text-align: center;
  width: 50%;
  margin: auto;
  border-radius: 50px;
  letter-spacing: 2px;
  padding-bottom: 5px;
  border: 1px solid #fff;
  background-color: #202020;
  margin-bottom: 2.5%;
}
.scrollToTop {
    color: #fff;
    font-size: 1.4em;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 1px -1px rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: #000;
    z-index: 9999;
    bottom: 1rem;
    right: 1rem;
    position: fixed;
    opacity: 1;
}

.up {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

@media screen and (max-width: 1650px) {
    .container-navbar {
        width: 100%;
    }

}

@media screen and (max-width: 1200px) {
    #Mob-Fas {
        display: none;
    }

    .Logo-Brand {
        padding: 10px 0 5px 0;
    }

    .container-navbar {
        width: 100%;
    }

    .dropdown {
        width: 100%;
        border-bottom: 1px solid #fff;
        float: none;
    }

    .dropdown .dropbtn {
        font-size: 14px;
        padding: 14px 16px;
    }

    .dropdown-content {
        min-width: 100%;
        max-width: 100%;
        position: relative;
        left: 0;
    }

    .dropdown-content a {
        background-color: #2b2b2b;
        font-size: 15px;
        padding: 10px 20px;
    }

    .dropdown-content a:hover {
        cursor: pointer;
        background-color: #ddd;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .kolom {
        width: 100%;
    }

    /* ============================= End NavBar ============================= */

    .Invoke-Main {
        width: 95%;
    }

    .Text-Head1 {

        font-size: 20px;
    }

    .Text-Head2 {
        font-size: 20px;
    }

    .FWB {
        font-size: 18px;
    }

    .Text-Content1 {
        font-size: 15px;
    }

    .Text-Content2 {
        font-size: 15px;
    }

    .Button-Position {
        margin-left: 5%;
    }

    .Button-Mode {
        font-size: 15px;
        width: 55%;
        margin-left: 0%;
    }

    .Selection {
        margin-bottom: 2.5%;
        margin-left: -5%;
        text-align: right;
        width: 100%;
    }

    .Selection select {
        font-size: 11px;
        width: 30%;
    }

    .Table-Container-Lengkap {
        width: 100%;
    }

    .Table-Lengkap {
        width: 100%;
    }

    .HeaderName {
        padding: 5px 0 0 0;
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .HeaderDate {
        padding: 0px;
        font-size: 15px;
    }

    .HeaderHour {
        font-size: 12px;
    }

    .KepalaHasil {
        font-size: 14px;

    }

    .KotakHasil {
        font-size: 35px;
        padding: 0px;
    }

    .KotakHasil2 {
        font-size: 15px;
    }

    .KotakHasil3 {
        font-size: 15px;
    }

    .Mode-Table {
        width: 95%;
    }

    .Mode-Kepala-Table {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .Mode-Kepala-Agent {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .Mode-Table-Result {
        font-size: 14px;
    }

    .Mode-Table-Result2 {
        font-size: 18px;
    }

    .Mode-Result-Agent {
        font-size: 12px;
    }

    .Invoke-BoCo {
        color: #000;
    }

    .Invoke-BoCoDepox {
        display: none;
    }

    .Invoke-Agent-Table {
        width: 95%;
    }

    .Agent-Rank {
        width: 15%;
    }

    .Invoke-Agent-Button {
        width: 80%;
        margin-top: 4px;
    }

    .Agent-ColorDepox {
        display: none;
    }

    amp-img {
        max-width: 50%;
        max-height: 60px;
    }

    .Banner {
        width: 100%;
    }

    .Banner img {
        width: 100%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        border: unset;
        /* border-bottom: 1px solid #fff; */
        margin-right: 0;
        margin-left: 0;
    }

}

@media screen and (max-width: 450px) {
    amp-img {
        max-width: 70%;
        max-height: 50px;
    }
    .none{
        margin-left : 0px;
    }
}


@media screen and (max-width: 400px) {
    amp-img {
        max-height: 45px;
    }
    .none{
        margin-left : 0px;
    }
    .Global-Container{
        width: 95%;
    margin: auto;
    }
    .cool-button {
        width:100%;
        margin-bottom: 10px;
    }
    .search-container{
        width:100%;
        margin-top:15px;
    }
    #searchInput1,#searchInput2,#searchInput3{
        width:100%;
    }
    .KeluaranBody, .KeluaranBody2, .KeluaranBody3{
      font-size:15px;
    }
    .KeluaranHeader, .KeluaranHeader2, .KeluaranHeader3{
      font-size:15px;
    }
}


@media screen and (max-width: 340px) {
    amp-img {
        max-height: 40px;
    }
    .none{
        margin-left : 0px;
    }
    .tr{
        font-size:14px;
    }
    .td{
        font-size:14px;
    }
    .table-container {
        max-height: 500px;
        overflow-y: scroll;
    }
}
@media (max-width:400px){
  .Box-Container {
  width:100%;
  }
  .Header-Name {
font-size: 20px;
}
.Date {
font-size: 18px;
}
.Hour {
font-size: 15px;
}
.Result {
font-size: 30px;
}
.Left-Box {
padding: 25px 0 25px 0;
}
.Left-Box {
  width: 35%;
}
}
</style>