/* Members Table Styling */
.members-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .members-table th {
    background-color: #2c3e50;
    color: white;
    padding: 12px 15px;
    text-align: left;
  }
  
  .members-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .members-table tr:nth-child(even) {
    background-color: #f5f5f5;
  }
  
  .members-table tr:hover {
    background-color: #f0f0f0;
  }
  
  .table-responsive {
    overflow-x: auto;
  }
  
  .table-footer {
    margin-top: 10px;
    font-weight: bold;
    text-align: right;
  }
  
  /* Button Styling */
  .btn-view, .btn-edit {
    padding: 5px 10px;
    margin: 0 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  
  .btn-view {
    background-color: #3498db;
    color: white;
  }
  
  .btn-edit {
    background-color: #f39c12;
    color: white;
  }
  
  .btn-view:hover {
    background-color: #2980b9;
  }
  
  .btn-edit:hover {
    background-color: #e67e22;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .members-table {
      display: block;
    }
    
    .members-table thead {
      display: none;
    }
    
    .members-table tr {
      display: block;
      margin-bottom: 15px;
      border: 1px solid #ddd;
    }
    
    .members-table td {
      display: block;
      text-align: right;
      padding-left: 50%;
      position: relative;
    }
    
    .members-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 15px;
      width: 45%;
      padding-right: 10px;
      font-weight: bold;
      text-align: left;
    }
    
    .members-table td[data-label="Actions"] {
      text-align: center;
    }
    
    .members-table td[data-label="Actions"]::before {
      display: none;
    }
  }