  #vorksake-assessment-container button { 
    display: block; width: 100%; text-align: left; padding: 15px; margin: 10px 0; 
    border: 2px solid #e2e8f0; border-radius: 8px; background: #fff; cursor: pointer; transition: 0.2s;
  }
  #vorksake-assessment-container button:hover { border-color: #5511F8; background: #f8fafc; }
  .progress-bar { height: 8px; background: #e2e8f0; border-radius: 4px; margin-bottom: 20px; overflow: hidden; }
  .progress-fill { height: 100%; background: #6366f1; transition: width 0.3s; }
  #vorksake-assessment-container h2 { font-size: 1.4rem; font-weight:bold; color: #7F4EF1; margin-bottom: 20px; } h3 { font-size: 1rem; color: #5511F8; font-weight:bold; margin-bottom: 12px; } h4 { font-size: 0.5rem; color: #5511F8; margin-bottom: 10px; }
  .result-card { text-align: left; line-height: 1.2; }
  .cta-button { background: #5511F8 !important; color: white !important; text-align: center !important; font-weight: bold; }

  .likert-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .likert-text h3 { font-size: 0.7rem; color: #5511F8; margin-bottom: 1px; }
  .likert-text h4 { font-size: 0.5rem; color: #5511F8; margin-bottom: 10px; }
  .likert-text h5 { font-size: 0.05rem; color: #5511F8; margin-bottom: 0px; }

  .likert-options-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
  }

	.likert-option {
		display: flex;
		flex-direction: column; /* Stacks the radio on top of the number */
		align-items: center;
		gap: 5px;
	}

	.likert-option input[type="radio"] {
		margin: 0;
		cursor: pointer;
	}

  .anchor-label {
    font-size: 0.75rem;
    color: #64748b;
    width: 80px; /* Constrains the text to stay at the ends */
    line-height: 1.2;
  }

  .anchor-label.start { text-align: left; }
  .anchor-label.end { text-align: right; }

  .progress-hint {
    font-size: 0.75rem;
    color: #64748b;
    text-align: left;
    line-height: 1.2;
  }

  .likert-buttons {
    display: flex;
    gap: 8px;
    flex-grow: 1;
    justify-content: center;
  }

  .likert-option label {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 0px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
  }

  .likert-option input[type="radio"]:checked + label {
    background: #5511F8;
    color: white;
    border-color: #5511F8;
  }
