    .dashboard-private {
      --dp-surface: #ffffff;
      --dp-primary: #1f5f8b;
      --dp-primary-dark: #184f75;
      --dp-text: #1f2a37;
      --dp-muted: #5f6b7a;
      --dp-border: #d9e0e8;
      font-family: "Open Sans", Arial, sans-serif;
      color: var(--dp-text);
      background: transparent;
      border: 0;
      border-radius: 6px;
      padding: 6px 0;
      margin-right: 8px;
    }
    .dp-hero {
      background: var(--dp-surface);
      border: 1px solid var(--dp-border);
      border-radius: 6px;
      padding: 16px 18px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      box-shadow: 0 4px 16px rgba(18, 32, 56, 0.08);
    }
    .dp-hero h1 {
      margin: 0;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
    }
    .dp-hero p {
      margin: 0;
      color: var(--dp-muted);
      font-size: 13px;
    }
    .dp-hero-link {
      color: #1f5f8b;
      text-decoration: underline;
      font-weight: 600;
    }
    .dp-actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 20px;
    }
    .dp-action {
      display: block;
      text-decoration: none;
      background: var(--dp-surface);
      border: 1px solid var(--dp-border);
      border-radius: 6px;
      padding: 14px;
      color: var(--dp-text);
      transition: all .2s ease;
      min-height: 60px;
      box-shadow: 0 4px 12px rgba(18, 32, 56, 0.07);
    }
    .dp-action:hover {
      border-color: #b4c3d1;
      background: #fbfcfd;
    }
    .dp-action i {
      color: var(--dp-primary);
      font-size: 20px;
      margin-bottom: 8px;
      display: inline-block;
    }
    .dp-action strong {
      display: inline-block;
      margin-left: 10px;
      font-size: 16px;
      color: #122033;
    }
    .dp-action span {
      display: block;
      color: var(--dp-muted);
      font-size: 13px;
      line-height: 1.4;
    }
    .dp-card {
      background: var(--dp-surface);
      border: 1px solid var(--dp-border);
      border-radius: 6px;
      padding: 14px;
      margin-bottom: 12px;
      box-shadow: 0 4px 16px rgba(18, 32, 56, 0.08);
    }
    .dp-card h3 {
      margin: 0 0 12px;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .dp-card h3 a {
      font-size: 13px;
      color: var(--dp-primary-dark);
      text-decoration: none;
      font-weight: 600;
    }
    .dp-card h3 a:hover {
      text-decoration: underline;
    }
    .dp-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: auto;
    }
    .dp-table th,
    .dp-table td {
      border-bottom: 1px solid var(--dp-border);
      padding: 9px 8px;
      font-size: 13px;
      vertical-align: middle;
      word-break: normal;
    }
    .dp-table th {
      color: #4b5563;
      font-weight: 700;
      text-align: left;
      background: #f6f8fa;
    }
    .dp-empty {
      padding: 12px 0;
      color: var(--dp-muted);
    }
    .dp-badge-link {
      display: inline-block;
      margin-top: 8px;
      background: #eef3f8;
      border: 1px solid #ced9e4;
      color: #22384b;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      border-radius: 6px;
      padding: 8px 12px;
    }
    .dp-badge-link:hover {
      background: #e2eaf2;
    }
    .dp-problems-text {
      margin: 0;
      color: #4b5563;
      line-height: 1.6;
    }
    .dp-problems-cta {
      margin: 14px 0 0;
    }
    .dp-orders-table .doc_col0 {
      width: 120px;
      white-space: nowrap;
    }
    .dp-order-site {
      display: block;
      font-size: 11px;
      color: var(--dp-muted);
      white-space: normal;
    }

    @media (max-width: 1150px) {
      .dp-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 760px) {
      .dashboard-private { padding: 4px 0; border-radius: 6px; margin-right: 0; }
      .dp-hero { display: block; }
      .dp-hero h1 { font-size: 24px; }
      .dp-hero p { margin-top: 8px; }
      .dp-actions { grid-template-columns: 1fr; }
      .dp-orders-table .doc_col0 {
        width: 30% !important;
      }
      .dp-orders-table .doc_col0 a {
        white-space: nowrap;
      }
      .dp-orders-table .dp-order-site {
        display: none;
      }
    }
