.schedule-widget {
    width: 100%;
    max-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, sans-serif;
  }

  .widget-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #333333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
  }

  .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .schedule-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0b89dd;
    border-radius: 6px;
    min-width: 60px;
    padding: 6px;
    margin-right: 12px;
    border: 1px solid #eef2f4;
  }

  .day {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .date {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
  }

  .schedule-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .event-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
  }

  .event-time {
    font-size: 0.8rem;
    color: #616161;
  }