.commission-report-page {
  padding-bottom: 1.5rem;

  .table-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .vgt-wrap {
      border-radius: 8px;
    }

    .vgt-inner-wrap {
      box-shadow: none;
    }
  }

  .table-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e6ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .table-card-body {
    padding: 1.25rem 1.5rem;
  }

  .commission-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    .stat-card {
      flex: 1;
      min-width: 160px;
      padding: 1.25rem;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      transition: transform 0.15s ease, box-shadow 0.15s ease;

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .stat-body {
      flex: 1;
      min-width: 0;
    }

    .stat-value {
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .stat-label {
      font-size: 0.8rem;
      opacity: 0.9;
      margin-top: 0.15rem;
    }

    .stat-card.stat-pending {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      color: #92400e;

      .stat-icon {
        background: rgba(146, 64, 14, 0.2);
      }
    }

    .stat-card.stat-approved {
      background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
      color: #1e40af;

      .stat-icon {
        background: rgba(30, 64, 175, 0.2);
      }
    }

    .stat-card.stat-paid {
      background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
      color: #065f46;

      .stat-icon {
        background: rgba(6, 95, 70, 0.2);
      }
    }

    .stat-card.stat-total {
      background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
      color: #3730a3;

      .stat-icon {
        background: rgba(55, 48, 163, 0.2);
      }
    }
  }

  .chart-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;

    &:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
  }

  .chart-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e6ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .chart-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
  }

  .chart-card-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    min-height: 360px;

    &--compact {
      min-height: 360px;
    }
  }

  .chart-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 1rem;
  }

  .chart-empty-content {
    width: 100%;
    max-width: 520px;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px dashed rgba(107, 114, 128, 0.35);
    background: rgba(107, 114, 128, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .chart-empty-icon {
    font-size: 2.2rem;
    line-height: 1;
    color: rgba(107, 114, 128, 0.9);
  }

  .chart-empty-message {
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: center;
    max-width: 420px;
    margin: 0;
  }
}
