/* IQ plugin styles */
.iq-root{max-width:1300px;margin:20px auto;padding:18px;border:1px solid #eee;border-radius:6px;background:#fff;font-family:Arial,Helvetica,sans-serif}
.iq-step{margin-bottom:18px}
.iq-actions{margin-top:12px}
#iq-role-skills{margin-top:8px;color:#444}
.iq-header{display:flex;align-items:center;gap:12px}
#iq-progress-bar{flex:1;height:12px;background:#f0f0f0;border-radius:8px;overflow:hidden}
#iq-progress-fill{height:100%;background:#4caf50;width:0%}
.iq-question{padding:12px}
.iq-choice{margin:8px 0}
input#iq-name,input#iq-email,input#iq-phone{display:block;width:100%;margin-bottom:8px;padding:8px;border:1px solid #ccc;border-radius:4px}
select#iq-role-select{display:block;width:100%;padding:8px;border:1px solid #ccc;border-radius:4px}
button{cursor:pointer;padding:8px 12px;border-radius:4px;border:1px solid #ccc;background:#f7f7f7}
button.button-primary{background:#0073aa;color:#fff;border-color:#006799}

header#site-header {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.iq-role-card {
  border: 2px solid #ddd;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.iq-role-card:hover {
  border-color: #0073aa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.iq-role-card.selected {
  border-color: #2271b1;
  background: #f0f8ff;
}

.iq-role-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.iq-role-skills {
  margin: 10px 0 0;
  color: #000000;
  font-size: 14px;
}

.iq-role-banner {
  background: #2271b1;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.iq-next-btn {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  background: #2271b1;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.iq-next-btn:enabled {
  opacity: 1;
}

.iq-next-btn:disabled {
  cursor: not-allowed;
}
