/* SeasonJobs AI Wizard — στυλ οδηγού βήμα-βήμα (καταχώρηση αγγελίας) */

#sjsw-root {
	max-width: 720px;
	margin: 24px auto;
	font-family: inherit;
	color: #161616;
}

#sjsw-root * { box-sizing: border-box; }

.sjsw-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	gap: 12px;
	flex-wrap: wrap;
}

.sjsw-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.sjsw-classic-link {
	font-size: 13px;
	color: #666;
	text-decoration: underline;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.sjsw-progress-wrap {
	margin-bottom: 22px;
}

.sjsw-progress-track {
	height: 6px;
	background: #ececec;
	border-radius: 999px;
	overflow: hidden;
}

.sjsw-progress-fill {
	height: 100%;
	background: #b8100a;
	border-radius: 999px;
	transition: width .25s ease;
}

.sjsw-progress-label {
	font-size: 12px;
	color: #888;
	margin-top: 6px;
}

.sjsw-card {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 14px;
	padding: 26px;
	box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.sjsw-question {
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 4px;
}

.sjsw-subtext {
	font-size: 13px;
	color: #777;
	margin: 0 0 18px;
}

.sjsw-options-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
}

.sjsw-option-card {
	border: 2px solid #e7e7e7;
	border-radius: 10px;
	padding: 14px 12px;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	background: #fafafa;
	transition: border-color .15s, background .15s;
	user-select: none;
}

.sjsw-option-card:hover { border-color: #d0a4a1; background: #fff; }

.sjsw-option-card.selected {
	border-color: #b8100a;
	background: #fdf1f0;
	color: #b8100a;
}

.sjsw-option-card .sjsw-opt-icon { font-size: 26px; display:block; margin-bottom: 6px; }

.sjsw-yesno-row {
	display: flex;
	gap: 12px;
}

.sjsw-yesno-row .sjsw-option-card { flex: 1; }

.sjsw-text-input,
.sjsw-textarea,
.sjsw-select-plain {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid #e7e7e7;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
}

.sjsw-textarea { min-height: 140px; resize: vertical; }

.sjsw-text-input:focus,
.sjsw-textarea:focus,
.sjsw-select-plain:focus { border-color: #b8100a; outline: none; }

.sjsw-inline-row {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.sjsw-inline-row > * { flex: 1; }

.sjsw-search-list {
	max-height: 260px;
	overflow-y: auto;
	border: 2px solid #e7e7e7;
	border-radius: 10px;
	margin-top: 10px;
}

.sjsw-search-item {
	padding: 10px 14px;
	font-size: 14px;
	cursor: pointer;
	border-bottom: 1px solid #f2f2f2;
}

.sjsw-search-item:last-child { border-bottom: none; }
.sjsw-search-item:hover { background: #fafafa; }
.sjsw-search-item.selected { background: #fdf1f0; color: #b8100a; font-weight: 700; }

.sjsw-empty-note { padding: 12px 14px; font-size: 13px; color: #999; }

.sjsw-nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	gap: 10px;
}

.sjsw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.sjsw-btn-primary { background: #b8100a; color: #fff; }
.sjsw-btn-primary:hover { background: #970d08; }
.sjsw-btn-primary:disabled { background: #e2a6a3; cursor: not-allowed; }

.sjsw-btn-secondary { background: #161616; color: #fff; }
.sjsw-btn-secondary:hover { background: #333; }

.sjsw-btn-ghost { background: none; color: #666; }
.sjsw-btn-ghost:hover { color: #161616; }

.sjsw-btn-skip { background: none; color: #999; font-weight: 600; font-size: 13px; text-decoration: underline; }

.sjsw-required-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #b8100a;
	background: #fdf1f0;
	border-radius: 6px;
	padding: 2px 8px;
	margin-left: 8px;
	vertical-align: middle;
}

.sjsw-review-list { list-style: none; padding: 0; margin: 0 0 18px; }

.sjsw-review-item {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f2f2f2;
	font-size: 14px;
}

.sjsw-review-item .sjsw-review-q { color: #888; }
.sjsw-review-item .sjsw-review-a { font-weight: 600; text-align: right; }
.sjsw-review-edit {
	font-size: 12px;
	color: #b8100a;
	text-decoration: underline;
	cursor: pointer;
	margin-left: 8px;
	white-space: nowrap;
}

.sjsw-final-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 480px) {
	.sjsw-card { padding: 18px; border-radius: 10px; }
	.sjsw-question { font-size: 17px; }
	.sjsw-nav-row { flex-wrap: wrap; }
}
