
.user-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .user-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .user-table table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .user-table th,
  .user-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .user-table th {
    text-align: left;
    font-weight: bold;
  }
  
  .user-table td:last-child {
    text-align: center;
  }
  
  .user-table .edit-btn,
  .user-table .delete-btn {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #ddd;
    border: none;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .user-table .edit-btn:hover,
  .user-table .delete-btn:hover {
    background-color: #ccc;
  }
  

  .user-form{
    margin-top: 25px;
  }

  .user-form h3 {
    margin-bottom: 10px;
  }
  
  .user-form input,
  .user-form input[type="file"],
  .user-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
    outline: none;
  }
  
  .user-form input[type="text"],
  .user-form input[type="email"],
  .user-form input[type="password"],
  .user-form input[type="tel"] {
    height: 40px;
  }
  
  .user-form select {
    height: 40px;
    background-color: #fff;
  }
  
  .user-form input:focus,
  .user-form select:focus {
    border-color: #4CAF50;
  }
  
  .user-form .form-buttons {
    margin-top: 20px;
  }
  
  .user-form .add-btn,
  .user-form .edit-btn,
  .user-form .remove-btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #4CAF50;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .user-form .add-btn:hover,
  .user-form .edit-btn:hover,
  .user-form .remove-btn:hover {
    background-color: #45a049;
  }
  
  