p.py-welcome-line1 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

p.py-welcome-line2 {
    font-size: 14px;
    border-bottom: 1px solid #0066ff50;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.py-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-bottom: 1px solid #0066ff50;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.py-dashboard-stats .py-stat {
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 12px;
}

.py-dashboard-stats .py-total-orders {
    border: 2px solid #009602;
    background-color: #00960220;
}

.py-dashboard-stats .py-total-items {
    border: 2px solid #9400D3;
    background-color: #9400D320;
}

.py-dashboard-stats .py-total-spent {
    border: 2px solid #0066ff;
    background-color: #0066ff20;
}

.py-dashboard-stats .py-onhold-orders {
    border: 2px solid #ff6600;
    background-color: #ff660020;
}

.py-total-orders .py-stat-label,
.py-total-orders .py-stat-value {
    color: #009602;
}

.py-total-items .py-stat-label,
.py-total-items .py-stat-value {
    color: #9400D3;
}


.py-total-spent .py-stat-label,
.py-total-spent .py-stat-value {
    color: #0066ff;
}


.py-total-spent .py-stat-value .woocommerce-Price-amount {
    color: #0066ff;
}

.py-onhold-orders .py-stat-label,
.py-onhold-orders .py-stat-value {
    color: #ff6600;
}

.py-total-orders .py-stat-label,
.py-total-items .py-stat-label,
.py-total-spent .py-stat-label,
.py-onhold-orders .py-stat-label {
    font-size: 15px;
    font-weight: 500;
}

.py-total-orders .py-stat-value,
.py-total-items .py-stat-value,
.py-total-spent .py-stat-value,
.py-onhold-orders .py-stat-value {
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    
    .py-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .py-dashboard-stats .py-stat {
        padding: 10px;
    }
    
    .py-total-orders .py-stat-label,
    .py-total-items .py-stat-label,
    .py-total-spent .py-stat-label,
    .py-onhold-orders .py-stat-label {
        font-size: 14px;
    }
    
    .py-total-orders .py-stat-value,
    .py-total-items .py-stat-value,
    .py-total-spent .py-stat-value,
    .py-onhold-orders .py-stat-value {
        font-size: 17px;
    }
}


/* Dashboard Order Hint */
.py-dashboard-hint {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding: 5px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    justify-content: space-between;
    box-sizing: border-box;
}

.py-hint-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: justify;
    gap: 7px;
    padding-right: 7px;
}

.py-dashboard-hint .py-hint-icon {
    display: flex;
    align-items: center;
}

.py-dashboard-hint .py-hint-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
    margin-top: -2px;
}

.py-dashboard-hint .py-hint-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-align: justify;
}

span.py-order-number, .py-order-date, .py-order-status {
    font-weight: bold;
}

@media (max-width: 768px) {    
    .py-dashboard-hint {
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px;
    }
    
    .py-hint-content {
       padding-right: 0;
       align-items: flex-start;
    }
    
    .py-dashboard-hint .py-hint-icon svg {
        margin-top: 2px;
    }
    .py-dashboard-hint .py-hint-text p {
       line-height: 1.6; 
    }
    .py-hint-btn-wrapper {
        width: 100% !important;
    }
    

    
}



.py-hint-btn-wrapper {
    width: max-content;
    justify-content: flex-end;
}

.py-hint-btn-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

a.py-hint-btn {
    color: #fff !important;
}