/* Global styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
  }
  
  .btn-secondary {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
  }
  
  /* Header styles */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .header-buttons .btn {
    margin-left: 10px;
  }
  
  /* Tab styles */
  .tab-buttons {
    display: flex;
    margin-bottom: 20px;
  }
  
  .tab-btn {
    padding: 10px 20px;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: #f1f1f1;
    cursor: pointer;
  }
  
  .tab-btn.active {
    border-bottom-color: #007bff;
    background-color: #fff;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    max-width: 500px;
  }
  
  .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .modal-header h2 {
    margin: 0;
  }
  
  .modal-body {
    margin-bottom: 20px;
  }
  
  .modal-footer {
    display: flex;
    justify-content: flex-end;
  }
  
  .modal-footer .btn {
    margin-left: 10px;
  }
  
  /* Specific modal styles */
  #createGateModal .modal-content,
  #createZoneModal .modal-content,
  #createTourismAreaModal .modal-content,
  #createNationalParkModal .modal-content {
    width: 60%;
    max-width: 600px;
  }
  
  /* User Management styles */
  .user-management-wrapper {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .user-management {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .header8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .header8 h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
  }
  
  .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .btn-primary {
    background-color: #006699;
    color: white;
  }
  
  .btn-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
  }
  
  .tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
  }
  
  .tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;
    color: #666;
  }
  
  .tab-btn.active {
    color: #006699;
    border-bottom: 2px solid #006699;
  }
  
  .action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
  
  th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
  }

  
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .pagination-btn {
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
  }
  
  .pagination-btn.active {
    background-color: #006699;
    color: white;
    border-color: #006699;
  }
  
  /* User details styles */
  .user-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .user-image {
    margin-right: 20px;
  }
  
  .user-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  