body {
    font-family: Arial, sans-serif;
    background-color: #f5f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
  }
  
  h1 {
    margin-bottom: 10px;
    color: #254B9E;
  }
  
  p {
    font-size: 14px;
    color: #555;
  }
  
  input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #254B9E;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #1d3f8c;
  }

  .card {
    background-color: #f0f4ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
  }

  .status-list {
    margin: 20px 0;
    text-align: left;
  }
  
  .step {
    padding: 10px;
    border-left: 4px solid #ccc;
    margin-bottom: 10px;
    background: #f8f9ff;
    border-radius: 4px;
  }
  
  .step.completed {
    border-left-color: green;
    background-color: #e7fbe7;
  }
  
  .step.active {
    border-left-color: #254B9E;
    background-color: #e0e8ff;
    font-weight: bold;
  }

  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    text-align: left;
  }
  
  input[type="checkbox"] {
    margin-right: 8px;
  }

  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin: 10px 0;
    resize: vertical;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fbfd;
    display: flex;
    justify-content: center;
    padding: 40px;
  }
  
  .container {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
  }
  
  h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  p {
    color: #555;
    margin-bottom: 16px;
  }
  
  .search-box {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    font-size: 14px;
  }
  
  .university-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f3f6fb;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
  }
  
  .university-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  .university-card span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
  }
  
  .checkmark {
    font-size: 18px;
    color: #0a84ff;
    font-weight: bold;
  }
  
  .continue-button {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    background-color: #0a84ff;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .continue-button:hover {
    background-color: #006be6;
  }