/* Basic Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
  }
  
  .container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
  }
  
  h1 {
    color: #4caf50;
  }
  
  label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-top: 20px;
  }
  
  input {
    padding: 10px;
    width: 200px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  #completed-weeks {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
  }
  
  #completed-months {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
  }
  
  #visit-schedule {
    margin-top: 30px;
    text-align: left;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  table th, table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  table th {
    background-color: #4caf50;
    color: white;
  }
  
  .visit {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
  }
  
  /* Tab Styles */
  .tab-button {
    padding: 10px 20px;
    background-color: #ddd;
    color: black;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
  }
  
  .tab-button.active {
    background-color: #4caf50;
    color: white;
  }
  
  .tab-content {
    display: none;
    margin-top: 20px;
  }
  
  .tab-content.active {
    display: block;
  }
  
