.crypto-prices {
    margin-top: 20px;
}

.top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.top-card {
    padding: 15px;
    border: #0000001A 1px solid;
    border-radius: 10px;
    min-width: 250px;
}

.top-card>:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-card img {
    width: 40px;
}

.top-card h2 {
    font-size: 14px;
    font-family: "bold";
    color: #111827;
}

.top-card div span {
    line-height: 20px;
}

.top-card div span span {
    font-size: 12px;
    color: #9CA3AF;
}

.top-card>:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.top-card h3 {
    font-size: 16px;
}

.success {
    font-size: 12px;
    color: #1D9946;
}

.error {
    font-size: 12px;
    color: #C94844;
}

table {
    width: 100%;
    text-align: right;
    border-collapse: collapse;
    line-height: 40px;
}


table th,
table td {
    color: #111827;
    font-size: 13px;
    padding: 5px 20px;
}



table thead tr {
    background-color: #F3F4F6;
}

table tbody tr>:first-child {
    display: flex;
    gap: 10px;
    align-items: center;
}

table tbody tr>:first-child img {
    width: 24px;
}

.table {
    padding: 20px;
}



.filter {
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
    align-items: stretch;
}

.filter select {
    border: 1px #E5E7EB solid;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: transparent;
    margin-left: 15px;
    color: #00000080;
}

.filter input[type="text"] {
    border: none;
    width: 100%;
}

.filter form {
    border: 1px #E5E7EB solid;
    border-radius: 10px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width:768px) {
    .top {
        flex-wrap: wrap;
    }

    .top-card {
        margin-top: 20px;
    }

    .table {
        overflow-x: auto;
        width: auto;
    }

    table {
        width: auto;
    }

    .filter {
        flex-wrap: wrap;
        padding: 20px;
        margin-top: 20px;
    }

    .filter>div {
        width: 100%;
    }

    .filter>:first-child {
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

    .filter select {
        width: 100%;
        margin: 0;
    }

    .filter>:last-child {
        margin-top: 10px;
    }


}