/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
  }
  
  .close-btn {
    font-size: 30px;
    color: #aaa;
    float: right;
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #000;
  }
  
  /* Tab Navigation */
  .tab-nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
  }
  
  .tab-nav li {
    flex-grow: 1;
    text-align: center;
  }
  
  .tab-nav a {
    display: block;
    padding: 10px;
    cursor: pointer;
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .tab-nav a:hover {
    background-color: #ddd;
  }
  
  .tab-nav .active {
    background-color: #007bff;
    color: white;
  }
  
  /* Tab Content */
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .modal input[type="text"],
  .modal input[type="password"],
  .modal input[type="date"] {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
  }
  
  .modal form button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
  }
  
  .modal form button:hover {
    background-color: #0056b3;
  }
  