<style>
  .touro-dental-acceptance-rate-tool {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    color: #333;
    overflow: hidden;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
  }

  .university-info .university-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    display: block;
  }

  .university-info .location {
    font-size: 1rem;
    color: #555;
  }

  .live-clock {
    font-size: 1.2rem;
    font-weight: 500;
    background-color: #1a237e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  }

  .main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .card h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3f51b5;
    border-bottom: 2px solid #e8eaf6;
    padding-bottom: 0.5rem;
  }

  .acceptance-rate-card .rate-display {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .acceptance-rate-card .percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2e7d32;
    display: block;
  }

  .acceptance-rate-card .label {
    font-size: 1rem;
    color: #666;
  }

  .acceptance-rate-card .details {
    display: flex;
    justify-content: space-around;
    text-align: center;
  }

  .acceptance-rate-card .details .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a237e;
    display: block;
  }

  .stats-card .stat-item {
    margin-bottom: 1rem;
  }

  .stats-card .stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 15px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }

  .progress-bar .progress {
    height: 100%;
    background: linear-gradient(90deg, #673ab7, #3f51b5);
    border-radius: 5px;
  }

  .stats-card .stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3f51b5;
    text-align: right;
  }

  .enrollment-card .enrollment-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
  }

  .enrollment-chart .chart-segment {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-image: conic-gradient(var(--c, #3f51b5) calc(var(--p, 0) * 1%), #e0e0e0 0);
  }
  
  .enrollment-chart .chart-segment.in-state { --c: #4caf50; }
  .enrollment-chart .chart-segment.out-of-state { --c: #ff9800; }
  .enrollment-chart .chart-segment.international { --c: #9c27b0; }

  .enrollment-chart .chart-segment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
  }
  
  .enrollment-chart .label, .enrollment-chart .percentage {
    position: relative;
    z-index: 1;
    color: #333;
    font-weight: bold;
  }
  
  .enrollment-chart .percentage {
    font-size: 1.2em;
  }


  .footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
  }
</style>