/* Dashboard Mockup - Enhanced */
.mockup-dashboard {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f1f5f9;
}

.mockup-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mockup-logo {
    font-weight: 700;
    font-size: 13px;
    color: #2563eb;
}

.mockup-nav {
    display: flex;
    gap: 4px;
}

.mockup-nav span {
    color: #64748b;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
}

.mockup-nav span.active {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 500;
}

.mockup-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-search {
    background: #f1f5f9;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    color: #94a3b8;
    width: 120px;
}

.mockup-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
}

.mockup-notif {
    width: 18px;
    height: 18px;
    background: #f1f5f9;
    border-radius: 4px;
    position: relative;
}

.mockup-notif::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
}

.mockup-body {
    flex: 1;
    padding: 12px;
    display: flex;
    gap: 12px;
    overflow: hidden;
}

.mockup-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mockup-stat {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.mockup-stat-label {
    font-size: 9px;
    color: #64748b;
    margin-bottom: 2px;
}

.mockup-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.mockup-stat-change {
    font-size: 9px;
    color: #10b981;
}

.mockup-chart {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mockup-chart-title {
    font-weight: 600;
    font-size: 11px;
    color: #0f172a;
}

.mockup-chart-legend {
    display: flex;
    gap: 8px;
}

.mockup-chart-legend span {
    font-size: 8px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mockup-chart-legend span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 2px;
}

.mockup-chart-legend span:first-child::before {
    background: #2563eb;
}

.mockup-chart-legend span:last-child::before {
    background: #e2e8f0;
}

.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    flex: 1;
    padding-top: 4px;
}

.mockup-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.mockup-bar-pair {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 60px;
}

.mockup-bar {
    width: 8px;
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 2px 2px 0 0;
}

.mockup-bar.secondary {
    background: #e2e8f0;
}

.mockup-bar-label {
    font-size: 7px;
    color: #94a3b8;
}

.mockup-side-panel {
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-orders {
    background: white;
    border-radius: 8px;
    padding: 10px;
    flex: 1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.mockup-orders-title {
    font-weight: 600;
    font-size: 10px;
    color: #0f172a;
    margin-bottom: 8px;
}

.mockup-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mockup-order:last-child {
    border: none;
}

.mockup-order-info {
    display: flex;
    flex-direction: column;
}

.mockup-order-id {
    font-size: 9px;
    font-weight: 600;
    color: #0f172a;
}

.mockup-order-items {
    font-size: 8px;
    color: #64748b;
}

.mockup-order-status {
    font-size: 7px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.mockup-order-status.preparing {
    background: #fef3c7;
    color: #d97706;
}

.mockup-order-status.ready {
    background: #dcfce7;
    color: #16a34a;
}

.mockup-order-status.new {
    background: #dbeafe;
    color: #2563eb;
}
