/* General Container Styles */
.manage-users-container {
    width: 98%; /* Wider container for the table */
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
  }
  
  .title {
    text-align: center;
    font-size: 25px; /* Larger title font */
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  /* Table Styles */
  .user-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #ddd; /* Thicker border */
    font-size: 20px; /* Larger table text */
    table-layout: auto;
  }
  
  .user-table th,
  .user-table td {
    border: 2px solid #ddd; /* Thicker cell borders */
    text-align: center;
    padding: 20px; /* Increased padding for larger cells */
  }
  
  .user-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    font-size: 22px; /* Bigger font for headers */
  }
  
  /* Row Colors */
  .even-row {
    background-color: #f9f9f9;
  }
  
  .odd-row {
    background-color: #fff;
  }
  
  /* Admin Badge */
  .admin-badge {
    color: #333;
    font-weight: bold;
    font-size: 18px; /* Bigger text for admin badge */
  }
  
  /* Buttons */
  .make-admin-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 25px; /* Bigger buttons */
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px; /* Larger button font */
  }
  
  .make-admin-btn:hover {
    background-color: #0056b3;
  }
  
  .delete-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 12px 25px; /* Bigger buttons */
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px; /* Larger button font */
  }
  
  .delete-btn:hover {
    background-color: #c82333;
  }
  
  /* Responsive Styles */
  .table-responsive {
    overflow-x: auto; /* Horizontal scroll for smaller screens */
  }
  
  .user-table {
    min-width: 1200px; /* Ensure the table has a wide minimum width */
  }
  
  @media (max-width: 768px) {
    .title {
      font-size: 24px;
    }
  
    .user-table th,
    .user-table td {
      padding: 15px; /* Smaller padding for mobile */
      font-size: 16px; /* Smaller font for mobile */
    }
  
    .make-admin-btn,
    .delete-btn {
      padding: 10px 20px; /* Smaller buttons for mobile */
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .user-table {
      font-size: 14px; /* Smaller table font for extra-small screens */
    }
  
    .title {
      font-size: 12px;
    }
  
    .user-table th,
    .user-table td {
      padding: 10px; /* Compact padding for mobile */
      font-size: 12px;
    }
  
    .make-admin-btn,
    .delete-btn {
      padding: 8px 12px;
      font-size: 12px;
    }
  }
  