<style>
  #dental-school-info-tool {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 2rem auto;
    color: #333;
    overflow: hidden;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
  }

  .logo-title {
    display: flex;
    align-items: center;
  }

  .logo {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    fill: #007bff;
  }

  .header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003366;
    margin: 0;
  }

  #clock {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    background-color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .school-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .school-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .school-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #003366;
    font-weight: 600;
  }

  .school-type {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
  }

  .private {
    background-color: #007bff;
  }
  
  .public {
     background-color: #28a745;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .stat-item {
    text-align: center;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
  }

  .stat-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
  }

  .stat-item p {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
  }
  
  .stat-item.acceptance-rate p {
      color: #28a745;
  }

  .stat-item span {
    font-size: 0.75rem;
    color: #888;
  }

  .comparison-table {
    margin-top: 3rem;
  }

  .comparison-table h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #003366;
    font-weight: 600;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    overflow: hidden;
  }

  th, td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }

  th {
    background-color: #003366;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
  }

  td {
    font-size: 1rem;
  }
  
  tbody tr:last-child td {
      border-bottom: none;
  }

  tbody tr:hover {
    background-color: #f8f9fa;
  }
  
  .pacific-data {
      font-weight: 600;
      color: #007bff;
  }
  
  .touro-data {
      font-weight: 600;
      color: #28a745;
  }
  
  @media (max-width: 992px) {
      .main-content {
          grid-template-columns: 1fr;
      }
      .header {
          flex-direction: column;
          align-items: flex-start;
      }
      #clock {
          margin-top: 1rem;
      }
  }

  @media (max-width: 576px) {
      #dental-school-info-tool {
          padding: 1.5rem;
      }
      .header h2 {
          font-size: 1.5rem;
      }
      .school-header h3 {
          font-size: 1.3rem;
      }
      .stat-item p {
          font-size: 1.8rem;
      }
      th, td {
          padding: 0.8rem 1rem;
      }
  }
</style>