body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    color: #e0e0e0;
    height: auto;
    min-height: 100vh;
    overflow: auto;
}
/* Set the text color of table headers */
table.dataTable thead th {
    color: #ffffff;
    background-color: #333333; /* Optional: set a background color for the header */
    font-family: 'Courier New', Courier, monospace;
}

/* Set the text color of table body */
table.dataTable tbody td {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

/* Optional: set the background color of table rows */
table.dataTable tbody tr {
    background-color: #2b2b2b;
    font-family: 'Courier New', Courier, monospace;
}

/* Optional: set the hover effect for table rows */
table.dataTable tbody tr:hover {
    background-color: #555555;
    font-family: 'Courier New', Courier, monospace;
}

/* Optional: set the text color for pagination and search input */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #ffffff !important;
    font-family: 'Courier New', Courier, monospace;
}

.dataTables_wrapper .dataTables_filter input {
    color: #ffffff;
    background-color: #333333; /* Optional: set a background color for the search input */
    font-family: 'Courier New', Courier, monospace;
}

.dataTables_wrapper .dataTables_length select {
    color: #ffffff;
    background-color: #333333; /* Optional: set a background color for the length select */
    font-family: 'Courier New', Courier, monospace;
}

.dataTables_wrapper .dataTables_info {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_paginate .paginate_button,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_info label,
.dataTables_wrapper .dataTables_processing {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

/* Style for the navigation bar to be above the container */
.nav-container {
    width: 100%; /* full width */
    margin: 0 auto;
    margin-top: 50px;
    max-width: 1000px;
    background-color: #121212; /* dark background color */
    text-align: center; /* center the buttons */
    padding: 10px 0; /* padding above and below the navigation links */
    position: absolute;
    top: 0;
    left: auto;
}


/* Style for navigation buttons */
.nav-button {
    display: inline-block; /* display buttons inline */
    margin-right: 30px; /* space between buttons */
    padding: 8px 15px; /* padding inside the button */
    text-decoration: none; /* no underline on the links */
    font-size: 16px; /* font size of the text inside the button */
    color: white; /* text color */
    background-color: #4caf50; /* slightly lighter than the nav bar for contrast */
    border-radius: 5px; /* rounded corners */
}

/* Change background color of buttons on hover */
.nav-button:hover {
    background-color: #555; /* lighter grey background on hover */
}

.container {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    width: 80%;
    max-width: 1000px;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 20px;
    margin-bottom: 20px;
}
.container-wide {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 1200px;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 20px;
    margin-bottom: 20px;
}
.container-narrow {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 800px;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 20px;
    margin-bottom: 20px;
}
.left-column, .right-column {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.left-column {
    background: #1e1e1e;
    max-width: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-column {
    background: #333;
    max-width: 50%;
    margin-left: 10px;
}
@media (max-width: 768px) {
    .left-column, .right-column {
        max-width: 100%;
        margin: 0;
    }
}
.terminal-textbox {
    width: 100%;
    height: 1000px;
    background-color: #000; 
    color: #00ff00; 
    border: none; 
    border-radius: 10px; 
    padding: 20px; 
    font-family: 'Courier New', Courier, monospace; 
    resize: none; 
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
    overflow-y: scroll; 
}
/* Chrome, Safari */
.terminal-textbox::-webkit-scrollbar {
    width: 12px;
}
.terminal-textbox::-webkit-scrollbar-track {
    background: #1e1e1e;
}
.terminal-textbox::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 10px;
    border: 3px solid #1e1e1e;
}
.terminal-textbox::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
/* Firefox */
.terminal-textbox {
    scrollbar-width: thin;
    scrollbar-color: #444 #1e1e1e;
}

h1, h2 {
    margin-top: 0;
    font-size: 20px;
    color: #ffffff;
}
.data-row {
    margin: 10px 0;
}
.data-label {
    font-weight: normal;
    color: #bbbbbb;
}
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #e0e0e0;
    box-sizing: border-box;
}

input.custom-checkbox {
    width: auto;
    padding: 0;
    margin: 0 10px 0 0;
    margin-left: 10px;
    border-radius: 0;
    border: none;
    background: none;
    color: inherit;
    box-sizing: content-box; /* or you can leave this out if you want */
}

#step-2 {
    margin-top: 30px; 
}
#step-3 {
    margin-top: 30px; 
}
#step-4 {
    margin-top: 30px; 
}
#step-5 {
    margin-top: 30px; 
}
#step-6 {
    margin-top: 30px; 
}
#step-7 {
    margin-top: 30px; 
}
#privateKey {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #e0e0e0;
    box-sizing: border-box;
}

button {
    cursor: pointer;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background: #4caf50;
    color: white;
    font-size: 16px;
}
button:hover {
    background: #45a049;
}
button.disabled {
    display: none;
}
a {
    color: #4caf50;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
.status-valid {
    color: #4caf50; 
}
.status-invalid {
    color: #f44336; 
}
/* .floating-button {
    position: relative;
    margin-top: 70px;
    left: 50%; 
    transform: translateX(-50%); 
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
    width: 150px;
} */
.floating-button-container {
    display: flex;
    justify-content: center; /* Mengatur agar tombol berada di tengah container */
    gap: 10px; /* Mengatur jarak antar tombol */
    margin-top: 70px; /* Menambahkan margin ke container jika diperlukan */
}
.floating-button {
    position: relative;
    /* margin-top: 70px; Hapus atau sesuaikan sesuai kebutuhan */
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
    /* width: 150px; */
    width: auto;
}

.floating-button-blue {
    position: relative;
    /* margin-top: 70px; Hapus atau sesuaikan sesuai kebutuhan */
    background-color: #d833a1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
    /* width: 150px; */
    width: auto;
}

.floating-button:hover {
    background-color: #45a049;
}

.data-row {
    margin: 1px 0;
    padding: 4px;
    border-radius: 7px;
    background-color: #2b2b2b;
    color: #e0e0e0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.data-row:hover {
    transform: scale(1.05);
}

.data-label {
    font-weight: bold;
    color: #4caf50;
}
.italic-text {
    font-style: italic;
}
.status-invalid {
    color: #f44336; 
}
.status-white {
    color: #e0e0e0; 
}

.scrollable-textbox {
    width: 97%;
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    margin: 10px auto;
    font-size: 14px;
}

.bundle-summary {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #FFD700; 
    text-shadow: 2px 2px 4px #000000; 
    margin: 10px 0; 
}

button:disabled {
    background-color: #777;
    cursor: not-allowed;
}

button.enabled {
    background-color: #4caf50;
    cursor: pointer;
}
.error-message {
    color: #ff4747; 
    background-color: #ffecec; 
    border: 1px solid #ff0000; 
    padding: 10px;
    border-radius: 8px; 
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    text-align: center;
    font-size: 16px;
    word-wrap: break-word;
}
#loadingIndicator {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1500;
}
#loadingIndicatorStep5 {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1500;
}
#loadingIndicatorStep7 {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1500;
}
#loadingIndicatorStep8 {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1500;
}
#loadingIndicatorq {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1500;
}
#loadingIndicatorgg {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1500;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.loading-text {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    animation: blink 1s step-start 0s infinite;
}

.result-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #2b2b2b;
    color: #e0e0e0;
    border-radius: 5px;
}
.result-container ul {
    list-style: none;
    padding: 0;
}

.result-container ul li {
    background: #333;
    margin: 2px 0;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
    transition: transform 0.2s, background-color 0.2s;
}

.result-container ul li:hover {
    transform: translateY(-2px);
    background-color: #444;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    50% { opacity: 0; }
}
.terminal-textbox {
    width: 100%;
    height: 90%;
    background-color: #000; 
    color: #14a20c; 
    border: none; 
    border-radius: 10px; 
    padding: 20px; 
    font-family: 'Courier New', Courier, monospace; 
    font-size: 14px;
    resize: none; 
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7); 
}
.red-text {
    color: #ff0000; 
}

table#recipientWallets td {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}


#dropdown-container {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #e0e0e0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#dropdown-container label {
    display: block;
    margin-bottom: 8px;
    font-weight:normal;
}

#dropdownRandomnessOptionMC {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #e0e0e0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#dropdownRandomnessOptionMC label {
    display: block;
    margin-bottom: 8px;
    font-weight:normal;
}

#dropdownPrice {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #444;
    color: #e0e0e0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="%23e0e0e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
}

#dropdownPrice option {
    background: #2b2b2b;
    color: #e0e0e0;
}

#dropdownTradingFunction {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #444;
    color: #e0e0e0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="%23e0e0e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
}

#dropdownTradingFunction option {
    background: #2b2b2b;
    color: #e0e0e0;
}

#dropdownRandomnessOption {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #444;
    color: #e0e0e0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="%23e0e0e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
}

#dropdownRouter {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #444;
    color: #e0e0e0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="%23e0e0e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
}

#dropdownRandomnessOption option {
    background: #2b2b2b;
    color: #e0e0e0;
}

#dropdownRouter option {
    background: #2b2b2b;
    color: #e0e0e0;
}

#dropdownExtraETH {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #444;
    color: #e0e0e0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="%23e0e0e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
}

#dropdownExtraETH option {
    background: #2b2b2b;
    color: #e0e0e0;
}