  .content label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: #333;
  }

  /* COMMON INPUT STYLE */
  .content input,
  .content textarea,
  .content select {
      width: 100%;
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 15px;
      box-sizing: border-box;
  }

  .content textarea {
      resize: vertical;
      min-height: 150px;
  }

  /* BUTTON */
  .btns {
      text-align: right;
  }

  .app {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      border: none;
      border-radius: 4px;
      background: linear-gradient(135deg, #0a3d62, #07517d);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
  }

  /* STATS GRID (REUSABLE) */
  .stats-grid {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
  }

  /* CARD STYLE */
  .stat-card {
      background: #f9f9f9;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      transition: 0.3s;
      border: 1px solid #eee;
  }

  .stat-card:hover {
      background: #eef6ff;
      transform: translateY(-3px);
  }

  /* NUMBER */
  .stat-card h3 {
      margin: 0;
      font-size: 22px;
      color: #0a3d62;
  }

  /* LABEL */
  .stat-card p {
      margin-top: 5px;
      font-size: 13px;
      color: #555;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
      .stats-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
     

      .btns {
          display: flex;
          flex-direction: column;
          gap: 10px;
      }

      .app {
          width: 100%;
          justify-content: center;
      }
  }