/* AdminDetails.module.css */
.tabList {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 0;
    margin: 0;
  }
  
  .tab {
    list-style: none;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #e0e0e0;
    border: 1px solid #ddd;
    border-bottom: none;
    margin: 0 2px;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s;
    text-transform: uppercase;
  }
  
  .selectedTab {
    background-color: #4caf50;
    color: white;
    border-bottom: 2px solid #4caf50;
  }
  
  .tab:hover {
    background-color: #d4d4d4;
  }
  
  .tab:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  