@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;

    font-style: normal;
    font-optical-sizing: auto;
    font-family: "Inter", system-ui;
}

body {
    width: 100%;
    height: 100%;
    background: #FFF;
}

#loading {
    z-index: 100;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
    background: rgba(24, 24, 24, 0.7);
}

.container {
    height: 100%;
    overflow-y: scroll;

    padding: 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
}

.cards {
    gap: 20px;
    display: flex;
    margin: 15px 0;
    flex-direction: row;
    justify-content: center;
}

.card {
    width: 170px;
    height: 60px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px #C72727 solid;
}

.REFUNDED {
    color: #C72727;
}

.CREATED {
    color: #f1c40f;
}

.APPROVED {
    color: #9b59b6;
}

.WAITING_DEPOSIT {
    color: #1abc9c;
}

.DEPOSITED {
    color: #1d9a52;
}

.transactions {
    overflow-x:auto;
}

#transactionTable {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 10px;
    border: 1px solid transparent;
    margin: 15px 0;
    width: 100%;
}

#transactionTable td, #transactionTable th {
    border: 1px solid #ddd;
    padding: 8px;
}

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

#transactionTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #C72727;
    color: white;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .cards {
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        max-height: 150px;
    }

    .card {
        width: 150px;
    }
}

.buttons {
    margin: 5px 0;
    width: 100%;
    display: flex;
    overflow-x: hidden;
    justify-content: space-between;
}

.button-5 {
    align-items: center;
    background-clip: padding-box;
    background-color: #C72727;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.button-5:hover,
.button-5:focus {
    background-color: #961d1d;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
    transform: translateY(-1px);
}

.button-5:active {
    background-color: #961d1d;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

.button-5-outline {
    align-items: center;
    background-clip: padding-box;
    background-color: transparent;
    border: 1px solid #C72727;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #C72727;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.button-5-outline:hover,
.button-5-outline:focus {
    background-color: #C72727;
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5-outline:hover {
    transform: translateY(-1px);
}

.button-5-outline:active {
    background-color: #961d1d;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

#stickers {
    display: none;
}

.actions {
    display: inline-flex;
    gap: 0.5rem;
}
