    .dashboard {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .kpi {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 1.2em;
    }
    .chart, .progress, .table, .pie-chart {
      height: 200px;
    }
    .bar {
      height: 10px;
      background-color: #007bff;
      margin-top: 5px;
      border-radius: 5px;
    }
    .progress-item {
      margin-bottom: 15px;
    }
	.approve-btn {
		margin-top: 10px;
		display: inline-block;
		background-color:#36011f;
		color: white;
		padding: 6px 12px;
		border: none;
		border-radius: 6px;
		cursor: pointer;
		font-size: 14px;
	}

	.approve-btn:hover {
		background-color: #45a049;
	}
    table {
      width: 100%;
      border-collapse: collapse;
    }
    table td, table th {
      padding: 8px;
      border-bottom: 1px solid #ccc;
    }