@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

/**
apikey = "5807da29-2e4e-4e9a-b089-ea37020f2f7b"
secretkey = "F6BD1F049DB12A172898CCC290663421"
IP = "117.240.119.74"
Display Name = "Test Key"
Permissions = "Enquiry"
*/
html {
    font-family: "Rubik", sans-serif;
    font-family: "Noto Sans", sans-serif;
    font-family: "Roboto", sans-serif;
}


body {
    margin: 0;
}

.space-mono {
    font-family: "Space Mono", monospace;
}

h1 {
    font-size: 65px;
    font-weight: 300;
    font-family: "Space Mono", monospace;

}

.crypto-dashborad {
    width: min(1200px, 85%);
    margin-inline: auto;
    margin-block: 20px;
}

.dashboard-header {
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid rgb(58, 58, 124);
}

.data-tile {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    --smooth-corners: 10;
    background: paint(smooth-corners);
    color: black;
    background-color: transparent;
    border: 1px solid black;
}

.data-tile:nth-child(1),
.data-tile:nth-child(2) {
        background-color: #d9643a;
    border-color: #d9643a;
    color: white;
}


.data-tiles {
    display: grid;
    gap: 20px;
    margin-block: 20px;
    grid-template-columns: 1fr 1fr;
}

.data-tile label {
    font-size: 20px;
}

.data-tile input {
    border: 0;
    width: 100%;
    font-size: 48px;
    font-family: "Space Mono", monospace;
    outline-color: transparent;
    transition: 300ms;
    background-color: transparent;
    appearance: none;
    color: inherit;
}

.other-data-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

}

.data-point {
    padding-block: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid black;
    color: white;
    background-color: #2A2F33;
    padding-inline: 20px;
    border-radius: 10px;
}

.data-point label {
    font-size: 20px;
}

.data-point input {
    font-size: 20px;
    appearance: none;
    background-color: transparent;
    width: fit-content;
    color: inherit;
    border: 0;
    font-family: "Space Mono", monospace;
}

[data-type="time"] {
    font-size: 19px;
    color: black;
    appearance: none;
    background-color: transparent;
    border: 0;
    font-family: "Space Mono", monospace;
}

.data-point:last-child:nth-child(odd) {
    grid-column: span 2;
}

.table-custom {
    overflow: auto;
}

table input {
    border: 0;
    appearance: none;
    font-size: 21px;
}
table td {
    font-size:21px ;
}

.data-tile:nth-child(3) {
    grid-column: span 1;
}

@media (max-width:1440px) {
    h1 {
        font-size: 55px;
    }

    .data-tile label, .data-point label, .data-point input {
        font-size: 18px;
    }

    .data-tile input {
        font-size: 42px;
    }

    .dashboard-header {
        padding: 20px;
    }
}

@media (max-width:1366px) {
    h1 {
        font-size: 45px;
    }

    .data-tile label {
        font-size: 16px;
    }
}


@media (max-width:1000px) {
    .data-tiles, .other-data-points {
        grid-template-columns: 1fr;
    }

    .data-point:last-child:nth-child(odd) {
        grid-column: unset;
    }

    .other-data-points {
        width: 100%;
        gap: 15px;
    }
    .data-tile:nth-child(3) {
        grid-column: unset;
    }
}

@media (max-width:767px) {
    .other-data-points, .data-tiles {
        gap: 10px;
    }
   
    table input, table td {
        font-size:18px ;
    }

    .data-point {
        flex-direction: column;
        align-items: start;
        max-width: 90vw;
    }

    .crypto-dashborad {
        width: min(1200px, 90%);
    }

    .data-point label {
        font-weight: 300;
        font-size: 16px;
    }

    .data-point input {
        font-size: 26px;
    }

    .data-tile input {
        font-size: 28px;
    }
}