/* Start custom CSS */.crypto-order-details-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #0d2033; /* Dark blue background */
    color: #cccccc; /* Light grey text color */
    padding: 20px;
    font-family: sans-serif;
    font-size: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px; /* Adds space below the bar */
}

.crypto-order-details-bar .detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    border-right: 1px dashed #555; /* Dashed separator */
    text-align: center;
}

.crypto-order-details-bar .detail-item:last-child {
    border-right: none; /* Remove border from the last item */
}

.crypto-order-details-bar .detail-item .label {
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crypto-order-details-bar .detail-item .value {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff; /* White color for the value */
}/* End custom CSS */