/* Styles for the "My Orders" clickable section */
.cuo-my-orders-section {
    height: 10vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4a90e2; /* Light blue background */
    color: white;
    cursor: pointer;
    text-align: center;
}

.cuo-my-orders-text {
    font-size: 1.5em;
    font-weight: bold;
    color: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styles for the order details popup */
.cuo-orders-popup {
    position: fixed;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 62vw;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    max-height: 70vh;
}

.cuo-order {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

/* Close button at the bottom of the popup */
.cuo-close-popup {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4a90e2;
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}
.cuo-close-popup:hover {
    background-color: #357ab8;
}
