body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: #333;
}

.container {
    background-color: #fff;
    padding: 20px;
    width: 300px;
    text-align: center;
    display: none;
    z-index: 9997 !important;
    justify-content: center;
    align-items: center;
    background-color: #333;
}

h1 {
    margin-bottom: 20px;
    color: white;
}

p {
    color: white;
}

label {
    margin-top: 30px !important;
    color: #fff;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

label {
    margin-bottom: 5px;
    color: #555;
    text-align: left;
}

input[type="text"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 18px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    width: fit-content;
    margin-top: 20px;
}

button:hover {
    background-color: #218838;
}

@media (min-width: 768px) {
    .container {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 30%;
        height: 100vh;
        overflow-y: auto;
    }

    body {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .container.full-page {
        display: block;
        width: 100%;
        height: 100vh;
        position: static;
        box-shadow: none;
        overflow: scroll;
    }

    .space {
        margin-bottom: 7% !important;
    }
}

.balance {
    color: white;
    margin-top: 20px;
    font-size: 1.2em;
    word-break: break-word;
}

.volume {
    margin-top: 30px;
    font-size: 1.5em;
}

.center-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

input[type="range"] {
    width: 80%;
}

.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 18px;
    overflow: hidden;
    font-size: 1.4em;
}

.custom-table thead th:first-child {
    border-top-left-radius: 18px;
}

.custom-table thead th:last-child {
    border-top-right-radius: 18px;
}

.custom-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 18px;
}

.custom-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 18px;
}

.custom-table a {
    color: white;
}

.links {
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 6px;
    display: inline-block;
    line-height: 1.1em;
}

.floating-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 2.2em;
    transition: background-color 0.3s ease;
}

.floating-btn:hover {
    background-color: black;
}

.floating-btn-pay {
    position: fixed;
    top: 20px;
    left: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 2.2em;
    transition: background-color 0.3s ease;
}

.floating-btn-pay:hover {
    background-color: black;
}