:root {
    --background: #002e3a;
    --card-background: #142537;
    --white: #FFFFFF;
    --green: #00C08A;
    --grey: #7a8490;
    --grey-white: #e2e2e2;
}
.no-orders-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--card-background);
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(10, 20, 40, 0.45);
    text-align: center;
    color: var(--grey-white);
}

.no-orders-image {
    width: 160px;
    height: 160px;
/*    margin-bottom: 20px; */
}

.no-orders-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.no-orders-card p {
    font-size: 16px;
    color: var(--grey);
}

body {
    background-color: var(--background);
    font-family: "Cousine", monospace;
}

.grey-white {
    color: var(--grey-white);
}

.grey {
    color: var(--grey);
}

.telegram-image {
    width: 32px;
    height: 32px;
}

.telegram-image-block {
    display: inline-block;
}

.right-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

li {
    text-wrap:nowrap;
}

.card {
    display: flex;
    position: relative;
    justify-content: space-between;
    min-width: auto;
    border-radius: 10px;
    background-color: var(--card-background);
    box-shadow: 0 4px 14px rgba(10, 20, 40, 0.45);
    padding: 15px;
    margin: 15px;
}

.green {
    color: var(--green);
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-05 {
    margin-bottom: 0.5rem;
}

.symbol-name, .take-profit-label {
    font-size: 20px;
    color: white;
    font-weight: 700;
}

.order-price {
    font-weight: 300;
    color: var(--grey-white);
}

.strike {
    text-decoration: line-through;
}

.symbol-image {
    width: 55px;
    height: 55px;
    margin-inline-end: 15px;
    border-radius: 50%;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

#root {
    max-width: 500px;
    width: 100%;
}

ul {
    margin-bottom: 0;
    margin-top: 0.3rem;
}

.text-no-wrap {
    flex-wrap: nowrap;
    text-wrap: nowrap;
}

.take-profit-container {
    margin-bottom: 1rem;
}

@media (max-width: 390px) {
    ul {
        padding-left:15px;
    }
    .card {
        display: block;
        justify-content: normal;
    }

    .right-container {
        align-items: normal;
    }

    .take-profit-container {
        margin-top: 1rem;
    }

    .telegram-image-block {
        top: 15px;
    }

    .click-image {
        right: auto;
        left: 40px;
        transform: rotate(270deg) scaleX(-1) !important;
        position: absolute;
    }
}

.click-image {
    transform: rotate(90deg);
    position: absolute;
    right: 40px;
}

.telegram-image-block {
    position: relative;
}