body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 20px;
  }

  /* Header styles */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .header h1 {
    font-size: 1.5rem;
    margin: 0;
  }

  /* Buttons styling */
  .btn-group {
    gap: 10px;
  }
 


  /* Sections styling */
  .section {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
  }

  /* Section headers with icons and edit */
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 1.2rem;
    margin: 0;
  }

  .section-header button {
    font-size: 0.9rem;
  }

  /* Tables styles */
  table {
    width: 100%;
    font-size: 0.9rem;
   
  }

  th {
    background: #eef1f7;
  }

  /* Buttons with icons */
  .btn i {
    margin-right: 5px;
  }

  /* Scrollable sections */
  .scrollable {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
  }
  