/* Minimal dashboard hooks */
.pv-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media(min-width:768px) {
    .pv-nav {
        width: 240px;
    }

    .pv-content {
        flex: 1;
    }
}

.pv-order-card {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 16px #0000001f;
}

/* @media(max-width:767px) {
    .pv-content {
        display: none
    }
} */

.pv-accordion-panel {
    padding: 1rem;
    display: none;
}

@media (max-width:767px) {
    .pv-content {
        display: none;
    }

    .pv-accordion-panel {
        padding: 0 !important;
        margin-top: 1rem;
    }
}

.pv-profile {
    display: flex;
    gap: 10px;
    padding: 15px;
    position: relative;
    width: 100%;
    background: #fff;
    align-items: center;
    box-shadow: 0 0 16px #0000001a;
    border-radius: 5px;
}

.pv-accordion ul li button {
    display: flex;
    gap: 10px;
    padding: 15px;
    position: relative;
    width: 100%;
    background: #fff;
    align-items: center;
    box-shadow: 0 0 10px #0000001a;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.pv-accordion ul li button:hover {
    background: #3BB77E;
    color: #fff;
}

.pv-accordion ul li button:active {
    background: #3BB77E;
    color: #fff;
}

.pv-order-head, .pv-order-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pv-order-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pv-order-item-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.pv-order-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.pv-order-number, .pv-order-count {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #5c5c5c;
}

.pv-order-status {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px !important;
    font-weight: 600;
    color: #fff;
    background-color: #3BB77E;
    padding: 5px 30px !important;;
    border-radius: 4px;
}

.pv-order-toggle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 30px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid transparent;
    background-color: #ff8d00;
    cursor: pointer;
    transition: all 300ms linear 0s;
    letter-spacing: 0.5px;
    font-family: 'Quicksand', sans-serif;
}

.order-details-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-top: 20px;
}

.order-details-address, .order-details-phone {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #5c5c5c;
    font-weight: 600;
}

.pv-od-bill-head, .pv-bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;  
}

.order-details-billing {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #5c5c5c;
    font-weight: 600;
}