#customer-dashboard { font-family: Arial, sans-serif; margin: 20px 0; }
#customer-dashboard .tabs { display: flex; list-style: none; padding: 0; border-bottom: 2px solid #ccc; }
#customer-dashboard .tabs li { margin-right: 10px; padding: 10px 20px; cursor: pointer; border: 1px solid #ccc; border-bottom: none; background: #f7f7f7; }
#customer-dashboard .tabs li.current { background: #fff; font-weight: bold; border-top: 2px solid #0073aa; }
#customer-dashboard .tab-content { display: none; padding: 20px; border: 1px solid #ccc; border-top: none; background: #fff; }
#customer-dashboard .tab-content.current { display: block; }

#customer-dashboard .box { padding: 15px; border: 1px solid #ddd; margin-bottom: 15px; background: #fafafa; }
#customer-dashboard .button { background: #0073aa; color: #fff; padding: 10px 20px; border: none; cursor: pointer; }
#customer-dashboard .button:hover { background: #005177; }

#customer-dashboard form { max-width: 400px; }
#customer-dashboard label { display: block; margin-bottom: 5px; font-weight: bold; }
#customer-dashboard input[type="password"] { width: 100%; padding: 8px; margin-bottom: 15px; border: 1px solid #ccc; }
#customer-dashboard .notification { padding: 15px; margin-bottom: 20px; }
#customer-dashboard .notification.is-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#customer-dashboard .notification.is-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }


#customer-dashboard .box {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.order-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.order-items li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.order-actions {
    display: flex;
    justify-content: flex-end;
}

.order-actions .button {
    padding: 10px 20px;
}
.inner-tabs {
    margin-top: 20px;
}

.inner-tab-links {
    list-style: none;
    display: flex;
    margin-bottom: 20px;
    padding: 0;
}

.inner-tab-link {
    margin-right: 10px;
    padding: 10px 20px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    cursor: pointer;
}

.inner-tab-link.current {
    background: #fff;
    border-top: 2px solid #0073aa;
    font-weight: bold;
}

.inner-tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
}

.inner-tab-content.current {
    display: block;
}




div#inner-tab-3 ul li {
    max-width: 500px;
    color: #000;
    padding: 7px;
    list-style: none;
    border: 1px solid #8080802e;
    margin: 2px;
}


.content-policy {
    display: flex;
    flex-direction: column;
}

/* ✅ FIXED: Chart.js Canvas Styling */
#orderChart,
#categoryChart {
    max-height: 400px;
    min-height: 300px;
    width: 100% !important;
    height: auto !important;
}

.row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.col-md-6 {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
}

.col-md-6 h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}