/**
 * CSS cho DISC Test Pro Plugin - Giao diện hiện đại và chuyên nghiệp
 */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');


.disc-test-pro-container {
	max-width: 1120px;
	margin: 30px auto;
	padding: 0;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	overflow: hidden;
	position: relative;
}

.disc-test-pro-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #6eb92b 0%, #056836 100%);
}

.disc-test-pro-header {
	background: linear-gradient(135deg, #6eb92b 0%, #056836 100%);
	color: #fff;
	padding: 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.disc-test-pro-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

.disc-test-pro-header h2 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: bold;
	text-shadow: 0 4px 12px rgba(0,0,0,0.15);
	position: relative;
	z-index: 1;
	letter-spacing: -0.5px;
	font-family: "Inter", sans-serif;
}

.disc-test-pro-description {
	color: rgba(255, 255, 255, 0.98);
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
	position: relative;
	z-index: 1;
	font-weight: 400;
	font-family: "Inter", sans-serif;
}

.disc-test-pro-instruction {
	background: rgba(255, 255, 255, 0.25);
	padding: 18px 25px;
	border-radius: 12px;
	color: #fff;
	font-size: 15px;
	margin: 20px 0 0 0;
	text-align: left;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* User Info Form */
.disc-test-pro-form-wrapper {
	padding: 40px;
}

.disc-test-pro-user-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 40px;
	padding: 35px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	border: 1px solid #e9ecef;
}

.disc-form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.disc-form-group label {
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
	font-size: 15px;
	letter-spacing: -0.2px;
}

.disc-form-group .required {
	color: #e74c3c;
	font-weight: 800;
}

.disc-form-input {
	padding: 16px 20px;
	border: 2.5px solid #e9ecef;
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #fff;
	color: #2c3e50;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disc-form-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 4px 12px rgba(102, 126, 234, 0.2);
	transform: translateY(-1px);
}

.disc-form-input::placeholder {
	color: #adb5bd;
	font-weight: 400;
}

/* Title */
.disc-test-title {
	margin-bottom: 40px;
}

.disc-test-title h2 {
	font-size: 24px;
	color: #2c3e50;
	font-weight: 700;
	margin: 0;
	line-height: 1.5;
	letter-spacing: -0.3px;
	text-align: center;
	font-family: "Inter", sans-serif;
}

.disc-test-title .same {
	color: #27ae60;
	font-weight: bold;
}

.disc-test-title .diff {
	color: #e74c3c;
	font-weight: bold;
}

.disc-test-instructions {
	margin-top: 25px;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 12px;
	border-left: 4px solid #6eb92b;
}

.disc-test-instructions h3 {
	color: #056836;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 0;
}

.disc-test-instructions h3:not(:first-child) {
	margin-top: 25px;
}

.disc-test-instructions ol {
	margin: 15px 0;
	padding-left: 0;
}

.disc-test-instructions li {
	color: #333;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 10px;
}

.disc-test-instructions p {
	color: #333;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 15px;
}

.disc-test-instructions strong {
	color: #056836;
	font-weight: 600;
}

@media (max-width: 768px) {
	.disc-test-title {
		padding: 0 20px;
		margin-bottom: 30px;
	}
	
	.disc-test-title h2 {
		font-size: 20px;
	}
	
	.disc-test-instructions {
		padding: 20px;
		margin-top: 20px;
	}
	
	.disc-test-instructions h3 {
		font-size: 16px;
	}
	
	.disc-test-instructions li,
	.disc-test-instructions p {
		font-size: 14px;
	}
}

/* Questions */
.disc-questions-wrapper {
	position: relative;
	margin-bottom: 40px;
}

.disc-question-item {
	display: none;
	padding: 0;
	background: transparent;
	animation: fadeInSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.disc-question-item.active {
	display: block;
}

@keyframes fadeInSlide {
	from {
		opacity: 0;
		transform: translateX(30px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-10px); }
	75% { transform: translateX(10px); }
}

.disc-question-item.has-error {
	animation: shake 0.5s;
}

.disc-question-header {
	margin-bottom: 30px;
}

.disc-question-title-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	justify-content: center;
}

.disc-question-number {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	background: linear-gradient(90deg, #007206 0%, #A5DB64 100%);
    color: #fff;
    border-radius: 16px;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    padding: 8px 16px;
}

.disc-question-number::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
	50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.disc-question-title {
	font-size: 24px;
	color: #2c3e50;
	margin: 0;
	font-weight: 600;
	flex: 1;
}

.disc-question-instruction-small {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	padding: 12px 18px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #667eea;
}

.disc-question-instruction-small .highlight-most {
	color: #27ae60;
	font-weight: 600;
}

.disc-question-instruction-small .highlight-least {
	color: #e74c3c;
	font-weight: 600;
}

.disc-question-instruction {
	margin-top: 15px;
	text-align: center;
}

.disc-question-instruction p {
	margin: 0;
	font-size: 15px;
	color: #333;
	line-height: 1.6;
}

.disc-question-instruction .text-blue {
	color: #3F69FF;
	font-weight: 600;
}

.disc-question-instruction .text-red {
	color: #F74657;
	font-weight: 600;
}

.disc-options-table-wrapper {
	overflow-x: auto;
	margin-top: 20px;
}

.disc-options-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disc-options-table thead {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.disc-options-table th {
	padding: 15px 20px;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: #2c3e50;
	border-bottom: 2px solid #dee2e6;
}

.disc-option-text-header {
	width: 60%;
}

.disc-option-most-header,
.disc-option-least-header {
	width: 20%;
	text-align: center;
}

.disc-option-most-header {
	color: #3F69FF;
}

.disc-option-least-header {
	color: #F74657;
}

.disc-options-table tbody tr {
	border-bottom: 1px solid #e9ecef;
	transition: background-color 0.2s;
}

.disc-options-table tbody tr:hover {
	background-color: #f8f9fa;
}

.disc-options-table tbody tr:last-child {
	border-bottom: none;
}

.disc-option-text-cell {
	padding: 18px 20px;
}

.disc-option-text {
	color: #2c3e50;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
}

.disc-option-radio-cell {
	padding: 18px 20px;
	text-align: center;
}

.disc-radio-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.disc-radio-label input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.disc-radio-custom {
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 2px solid #dee2e6;
	border-radius: 50%;
	background: #fff;
	transition: all 0.3s;
	position: relative;
}

.disc-radio-label:hover .disc-radio-custom {
	border-color: #adb5bd;
	transform: scale(1.1);
}

.disc-option-row:has(.disc-option-input-most:checked) .disc-option-text {
	color: #3F69FF;
	font-weight: 600;
}

.disc-option-row:has(.disc-option-input-least:checked) .disc-option-text {
	color: #F74657;
	font-weight: 600;
}

.disc-option-input-most:checked + .disc-radio-custom {
	border-color: #3F69FF;
	background: #3F69FF;
}

.disc-option-input-most:checked + .disc-radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
}

.disc-option-input-least:checked + .disc-radio-custom {
	border-color: #F74657;
	background: #F74657;
}

.disc-option-input-least:checked + .disc-radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
}

.disc-option-input-most:disabled + .disc-radio-custom,
.disc-option-input-least:disabled + .disc-radio-custom {
	opacity: 0.4;
	cursor: not-allowed;
	background: #e9ecef;
	border-color: #ced4da;
}

.disc-radio-label:has(input:disabled) {
	cursor: not-allowed;
}

.disc-nav-btn.disabled,
.disc-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.disc-choice-btn:hover .btn-icon {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.disc-choice-btn:has(input:checked) .btn-icon {
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.25);
	transform: scale(1.2);
	animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
	0%, 100% { transform: scale(1.2); }
	50% { transform: scale(1.35); }
}

.disc-choice-most:has(input:checked) .btn-icon {
	background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	color: #fff;
	border-color: #1e8449;
	box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.disc-choice-least:has(input:checked) .btn-icon {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
	border-color: #a93226;
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.disc-question-status {
	margin-top: 15px;
	padding: 12px 18px;
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	border-radius: 8px;
}

.disc-question-status .status-text {
	color: #856404;
	font-size: 13px;
	font-weight: 500;
}

/* Navigation Buttons */
.disc-navigation-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 40px;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
	border-top: 1px solid #e9ecef;
	margin-top: 20px;
}

.disc-nav-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: #fff;
	border: 1px solid #5a9e2a;
	color: #5a9e2a;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
	position: relative;
	overflow: hidden;
}

.disc-nav-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(102, 126, 234, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.disc-nav-btn:hover::before {
	width: 300px;
	height: 300px;
}

.disc-nav-btn:hover {
	background: linear-gradient(135deg, #6eb92b 0%, #056836 100%);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 14px 35px rgba(60, 130, 18, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
	border-color: transparent;
}

.disc-nav-btn .btn-icon,
.disc-nav-btn .btn-text {
	position: relative;
	z-index: 1;
}

.disc-nav-btn:active {
	transform: translateY(0);
}

.disc-nav-btn .btn-icon {
	font-size: 20px;
}

.disc-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Submit Button */
.disc-test-pro-actions {
	text-align: center;
	padding: 30px 40px;
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	border-top: 1px solid #e9ecef;
}

.disc-submit-btn {
	background: linear-gradient(135deg, #F08C02, #ffa500);
	color: #fff;
	border: none;
	padding: 20px 60px;
	font-size: 18px;
	font-weight: 800;
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(240, 140, 2, 0.3);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
}

.disc-submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s;
}

.disc-submit-btn:hover::before {
	left: 100%;
}

.disc-submit-btn:hover {
	transform: translateY(-4px) scale(1.02);
}

.disc-submit-btn:active {
	transform: translateY(-1px);
}

.disc-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Results */
.disc-result-container {
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.disc-result-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e0e0e0;
}

.disc-result-header h2 {
	color: #2c3e50;
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 700;
}

.disc-result-header h2 .disc-title-d { color: #F74657; }
.disc-result-header h2 .disc-title-i { color: #FFCB62; }
.disc-result-header h2 .disc-title-s { color: #27B883; }
.disc-result-header h2 .disc-title-c { color: #3F69FF; }

.disc-pattern-name-display {
	color: #3F69FF;
	font-weight: 700;
}

.disc-result-subtitle {
	color: #2c3e50;
	font-size: 16px;
	line-height: 1.6;
	margin-top: 15px;
}

.disc-result-subtitle .text-red {
	color: #F74657;
	font-weight: 600;
}

.disc-result-user {
	color: #666;
	font-size: 18px;
}

/* New Result Layout */
.disc-result-left {
	margin-bottom: 30px;
}

.disc-result-card {
	background: #EFF2FF;
	border-radius: 20px;
	padding: 24px;
	text-align: center;
}

.disc-result-image-wrapper {
	position: relative;
	height: 274px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #B5C5FF;
	background: #fff;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.disc-result-pattern-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	font-size: 30px;
	font-weight: 700;
	color: #3F69FF;
	text-shadow: 1px 0 0 #3F69FF, 0 1px 0 #3F69FF, -1px 0 0 #3F69FF, 0 -1px 0 #3F69FF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1.3;
	z-index: 0;
}

.disc-pattern-image {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.disc-result-info {
	text-align: left;
}

.disc-result-greeting {
	margin: 0 0 8px 0;
	font-size: 16px;
	color: #2c3e50;
	font-weight: 500;
}

.disc-result-pattern-name {
	margin: 0 0 4px 0;
	font-size: 28px;
	font-weight: 700;
	color: #3F69FF;
	line-height: 1.3;
}

.disc-result-group {
	margin: 0 0 12px 0;
	font-size: 21px;
	font-weight: 600;
	color: #2c3e50;
	line-height: 1.3;
}

.disc-result-keywords {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.disc-keyword {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 999px;
	height: 32px;
	background: #3F69FF;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.disc-graph-wrapper {
	background: #EFF2FF;
	border-radius: 24px;
	padding: 24px;
}

.disc-graph-title {
	margin: 0 0 16px 0;
	font-size: 32px;
	font-weight: 700;
	color: #0D1530;
	line-height: 1;
}

.disc-graph-legend {
	margin-bottom: 16px;
}

.disc-graph-legend > p {
	margin: 0 0 12px 0;
	font-size: 16px;
	color: #000;
	line-height: 1.3;
}

.disc-legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.disc-legend-line {
	width: 28px;
	height: 2px;
	flex-shrink: 0;
}

.disc-legend-green {
	background: #19A892;
}

.disc-legend-red {
	background: #F74657;
}

.disc-legend-item p {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
}

.disc-legend-item strong {
	font-weight: 700;
}

.disc-legend-text {
	font-weight: 400;
}

.disc-svg-graph-container {
	background: #fff;
	border-radius: 12px;
	border: 1px solid #B5C5FF;
	padding: 10px;
	margin-bottom: 16px;
	overflow-x: auto;
	overflow-y: visible;
}

.disc-svg-graph-container svg {
	max-width: 100%;
	height: auto;
	display: block;
}

.disc-simple-chart {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.disc-simple-section {
	background: #f8faff;
	border: 1px solid #e3e8f8;
	border-radius: 10px;
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.disc-simple-title {
	font-size: 14px;
	font-weight: 700;
	color: #1d2a57;
	margin: 0;
}

.disc-simple-row {
	display: grid;
	grid-template-columns: 36px 1fr 56px;
	gap: 12px;
	align-items: center;
}

.disc-simple-type {
	font-weight: 700;
	color: #2c3e50;
	text-align: center;
}

.disc-simple-bar-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.disc-simple-bar {
	display: flex;
	align-items: center;
	height: 12px;
}

.disc-simple-bar-flat {
	height: 12px;
	background: #f1f3f8;
	border-radius: 6px;
	overflow: hidden;
}

.disc-simple-neg,
.disc-simple-pos {
	width: 50%;
	height: 12px;
	background: #f1f3f8;
	overflow: hidden;
}

.disc-simple-neg {
	display: flex;
	justify-content: flex-end;
	border-radius: 6px 0 0 6px;
}

.disc-simple-pos {
	border-radius: 0 6px 6px 0;
}

.disc-simple-zero {
	width: 2px;
	height: 16px;
	background: #1d2a57;
}

.disc-simple-fill {
	height: 100%;
}

.disc-simple-fill.disc-neg {
	background: #F74657;
}

.disc-simple-fill.disc-pos {
	background: #19A892;
}

.disc-simple-fill.disc-fill-most {
	background: #19A892;
}

.disc-simple-fill.disc-fill-least {
	background: #F74657;
}

.disc-simple-score {
	font-weight: 700;
	color: #0D1530;
	text-align: right;
}

.disc-simple-meta {
	font-size: 12px;
	color: #5b6b8a;
}

@media (max-width: 576px) {
	.disc-simple-row {
		grid-template-columns: 28px 1fr;
	}

	.disc-simple-score {
		grid-column: 1 / -1;
		text-align: left;
	}
}

.disc-graph-analysis {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-top: 16px;
	border-top: 1px solid #B5C5FF;
}

.disc-analysis-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.disc-analysis-title {
	margin: 0 0 16px 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #2c3e50;
}

.disc-analysis-title .text-green {
	color: #27B883;
}

.disc-analysis-list {
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
}

.disc-analysis-list li {
	font-size: 16px;
	line-height: 1.5;
	color: #0D1530;
}

.disc-analysis-list .text-blue {
	color: #3F69FF;
}

/* Scores Section */
.disc-scores-section {
	margin-bottom: 40px;
}

.disc-scores-section h3 {
	color: #2c3e50;
	font-size: 24px;
	margin-bottom: 30px;
	text-align: center;
	font-weight: 600;
}

.disc-scores-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.disc-score-item {
	padding: 25px;
	background: #f8f9fa;
	border-radius: 12px;
	border: 2px solid #e0e0e0;
	transition: all 0.3s;
}

.disc-score-item.primary-type {
	border-color: #667eea;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	transform: scale(1.05);
}

.disc-score-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.disc-type-label {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
}

.disc-score-item[data-type="D"] .disc-type-label { color: #e74c3c; }
.disc-score-item[data-type="I"] .disc-type-label { color: #f39c12; }
.disc-score-item[data-type="S"] .disc-type-label { color: #27ae60; }
.disc-score-item[data-type="C"] .disc-type-label { color: #667eea; }

.disc-score-value {
	font-size: 20px;
	font-weight: 700;
	color: #666;
}

.disc-score-bar {
	height: 35px;
	background: #e0e0e0;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 12px;
	position: relative;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.disc-score-fill {
	height: 100%;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	border-radius: 18px;
	transition: width 1s ease-out;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.disc-score-item[data-type="D"] .disc-score-fill { background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%); }
.disc-score-item[data-type="I"] .disc-score-fill { background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%); }
.disc-score-item[data-type="S"] .disc-score-fill { background: linear-gradient(90deg, #27ae60 0%, #229954 100%); }
.disc-score-item[data-type="C"] .disc-score-fill { background: linear-gradient(90deg, #667eea 0%, #764ba2 100%); }

.disc-score-percentage {
	text-align: center;
	font-size: 18px;
	color: #2c3e50;
	font-weight: 700;
}

/* Type Details */
.disc-primary-result {
	margin-top: 40px;
}

.disc-type-detail {
	padding: 35px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 12px;
	margin-bottom: 25px;
	border-left: 6px solid #667eea;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disc-type-detail.secondary {
	border-left-color: #95a5a6;
	background: #f8f9fa;
}

.disc-type-title {
	color: #2c3e50;
	font-size: 26px;
	margin-bottom: 20px;
	font-weight: 700;
}

.disc-type-description {
	color: #555;
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 30px;
}

.disc-type-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 25px;
}

.disc-type-strengths,
.disc-type-challenges {
	background: #fff;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.disc-type-strengths h4,
.disc-type-challenges h4 {
	color: #2c3e50;
	font-size: 20px;
	margin-bottom: 18px;
	font-weight: 700;
}

.disc-type-strengths ul,
.disc-type-challenges ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.disc-type-strengths li,
.disc-type-challenges li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: #555;
	line-height: 1.7;
	font-size: 15px;
}

.disc-type-strengths li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
	font-size: 20px;
}

.disc-type-challenges li:before {
	content: "→";
	position: absolute;
	left: 0;
	color: #f39c12;
	font-weight: bold;
	font-size: 20px;
}

/* Result Actions */
.disc-result-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #e0e0e0;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
}

.disc-btn-secondary {
	background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
	color: #fff;
	border: none;
	padding: 14px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.disc-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(149, 165, 166, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
	.disc-svg-graph-container,.disc-line-svg{
		min-height: auto !important;
	}
	.disc-result-header h2 {
		font-size: 24px;
	}
	
	.disc-result-subtitle {
		font-size: 14px;
	}
	
	.disc-result-left {
		margin-bottom: 0;
		flex:auto !important
	}
	
	.disc-result-card {
		padding: 20px;
	}
	
	.disc-result-image-wrapper {
		height: 200px;
	}
	
	.disc-result-pattern-bg {
		font-size: 24px;
	}
	
	.disc-result-pattern-name {
		font-size: 24px;
	}
	
	.disc-result-group {
		font-size: 18px;
	}
	
	.disc-graph-wrapper {
		padding: 20px;
	}
	
	.disc-graph-title {
		font-size: 24px;
	}
	
	.disc-graph-legend > p,
	.disc-legend-item p {
		font-size: 14px;
	}
	
	.disc-analysis-title {
		font-size: 14px;
	}
	
	.disc-analysis-list li {
		font-size: 14px;
	}
	
	.disc-test-pro-container {
		margin: 15px;
		border-radius: 16px;
	}

	.disc-test-pro-header {
		padding: 35px 25px;
	}

	.disc-test-pro-header h2 {
		font-size: 28px;
	}

	.disc-test-pro-description {
		font-size: 15px;
	}

	.disc-test-pro-form-wrapper {
		padding: 25px 15px;
	}

	.disc-test-pro-user-info {
		grid-template-columns: 1fr;
		padding: 25px;
		gap: 20px;
	}

	.disc-test-title {
		padding: 0;
		margin-bottom: 30px;
	}

	.disc-test-title h2 {
		font-size: 20px;
	}

	.disc-question-number {
		font-size: 20px;
	}

	.disc-option-item {
		min-height: 55px;
		padding: 0 10px;
	}

	.disc-choice-btn {
		width: 45px;
		height: 55px;
	}
	
	.disc-option-content {
		padding: 12px 16px;
		min-height: 55px;
	}

	.disc-choice-btn .btn-icon {
		width: 42px;
		height: 42px;
		font-size: 22px;
	}

	.disc-option-content {
		padding: 15px 18px;
		min-height: 45px;
	}

	.disc-option-text {
		font-size: 16px;
	}

	.disc-scores-grid {
		grid-template-columns: 1fr;
	}

	.disc-type-info-grid {
		grid-template-columns: 1fr;
	}

	.disc-navigation-wrapper {
		padding: 20px;
		flex-direction: column;
		gap: 12px;
	}

	.disc-nav-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 28px;
	}

	.disc-test-pro-actions {
		padding: 25px 20px;
	}

	.disc-submit-btn {
		width: 100%;
		padding: 18px 40px;
		font-size: 16px;
	}

	.disc-result-actions {
		flex-direction: column;
		gap: 15px;
	}

	.disc-read-more,
	.disc-start-test {
		width: 100%;
	}

	.disc-read-more {
		text-align: center;
	}

	.disc-btn-secondary {
		width: auto;
	}
}

/* Result Page Styles */
.disc-block-result {
	margin-top: 30px;
}

.row-disc-result {
	margin-bottom: 30px;
}

.disc-result-info p {
	margin-bottom: 15px;
	line-height: 1.8;
	color: #2c3e50;
	font-size: 15px;
}

.disc-result-info strong {
	font-weight: 600;
}

.disc-graph {
	text-align: center;
}

#disc-svg-graph {
	display: inline-block;
	max-width: 100%;
}

.disc-desc {
	margin-top: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.disc-desc p {
	margin: 0;
	line-height: 1.8;
	color: #2c3e50;
}

.disc-show-more {
	margin-top: 30px;
}

.hide_gradient {
	height: 200px;
	overflow: hidden;
	position: relative;
}

.hide_gradient:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}

.disc-show-more:not(.hide_gradient) {
	height: auto;
}

.disc-show-more:not(.hide_gradient):after {
	display: none;
}

.disc-more-infor {
	margin-top: 30px;
}

.disc-table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}

.disc-table td {
	padding: 15px;
	border: 1px solid #e0e0e0;
	vertical-align: top;
}

.disc-bg-d {
	background: #e74c3c;
	color: #fff;
}

.disc-bg-i {
	background: #f39c12;
	color: #fff;
}

.disc-bg-s {
	background: #27ae60;
	color: #fff;
}

.disc-bg-c {
	background: #667eea;
	color: #fff;
}

.disc-title-head {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.disc-border {
	border: 1px solid #e0e0e0;
}

.disc-border-right {
	border-right: 1px solid #e0e0e0;
}

.disc-table ul {
	margin: 10px 0;
	padding-left: 20px;
}

.disc-table li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.txt-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #2c3e50;
}

.disc-more-result {
	margin-top: 30px;
}

.disc-more-result table {
	border-collapse: collapse;
}

.disc-more-result td {
	padding: 15px;
	border: 1px solid #e0e0e0;
	vertical-align: top;
}

.bd-bottom {
	border-bottom: 1px solid #e0e0e0;
}

.bd-right {
	border-right: 1px solid #e0e0e0;
}

.no-border {
	border: none !important;
}

.disc-title-d {
	color: #e74c3c;
	font-size: 30px;
	font-weight: 700;
}

.disc-title-i {
	color: #f39c12;
	font-size: 30px;
	font-weight: 700;
}

.disc-title-s {
	color: #27ae60;
	font-size: 30px;
	font-weight: 700;
}

.disc-title-c {
	color: #667eea;
	font-size: 30px;
	font-weight: 700;
}

.disc-read-more {
	background: linear-gradient(135deg, #F08C02, #ffa500);
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
	box-sizing: border-box;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.disc-read-more a {
	color: #fff;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.disc-read-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.disc-start-test {
	display: inline-block;
	box-sizing: border-box;
	max-width: 100%;
}

.disc-start-test button {
	background: linear-gradient(90deg, #F05A27 0%, #FB8B28 100%);
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
	box-sizing: border-box;
	white-space: nowrap;
}

.disc-start-test button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(149, 165, 166, 0.4);
}

.text-desc {
	margin: 30px 0;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.text-desc p {
	margin: 0;
	line-height: 1.8;
	color: #2c3e50;
}

.pl-0 {
	padding-left: 0;
}

.mb-10 {
	margin-bottom: 40px;
}

.mb-5 {
	margin-bottom: 20px;
}

/* Print Styles */
@media print {
	.disc-test-pro-container {
		box-shadow: none;
		padding: 0;
	}

	.disc-result-actions {
		display: none;
	}

	.disc-question-item {
		page-break-inside: avoid;
	}
}

/* Popup Modal Styles */
.disc-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.disc-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.disc-modal-content {
	position: relative;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 10001;
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.disc-modal-header {
	padding: 25px 30px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, #F05A27 0%, #FB8B28 100%);
	color: #fff;
	border-radius: 20px 20px 0 0;
}

.disc-modal-header h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
}

.disc-modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}

.disc-modal-close:hover {
	transform: rotate(90deg);
}

.disc-modal-body {
	padding: 30px;
}

.disc-modal-footer {
	padding: 20px 30px;
	border-top: 1px solid #e0e0e0;
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	background: #f9f9f9;
	border-radius: 0 0 20px 20px;
}

.disc-btn-primary {
	background: linear-gradient(135deg, #6eb92b 0%, #056836 100%);
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.disc-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(110, 184, 43, 0.4);
}

.disc-btn-secondary {
	background: #f0f0f0;
	color: #333;
	border: 1px solid #ddd;
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.disc-btn-secondary:hover {
	background: #e0e0e0;
}

/* Nút thông tin về DISC */
.disc-info-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.disc-info-btn {
	background: linear-gradient(135deg, #6eb92b 0%, #056836 100%);
	color: #fff;
	border: none;
	padding: 15px 30px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	flex: 1;
	min-width: 250px;
	box-shadow: 0 4px 12px rgba(110, 184, 43, 0.2);
}

.disc-info-btn:hover {
	transform: translateY(-2px);
}

.disc-info-btn:active {
	transform: translateY(0);
}

/* Popup Modal cho thông tin DISC */
.disc-info-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.disc-info-modal-content {
	max-width: 900px;
	max-height: 90vh;
	width: 90%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: modalSlideIn 0.3s ease-out;
}

.disc-info-modal-body {
	padding: 30px;
	overflow-y: auto;
	flex: 1;
}

.disc-info-section {
	margin-bottom: 30px;
}

.disc-info-section h4 {
	color: #056836;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 25px;
}

.disc-info-section h4:first-child {
	margin-top: 0;
}

.disc-info-section p {
	color: #333;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 15px;
}

.disc-info-image-placeholder {
	margin: 20px 0;
	text-align: center;
}

.disc-info-image-placeholder img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Bảng nhóm tính cách kết hợp */
.disc-combined-types-table {
	margin: 25px 0;
	overflow-x: auto;
}

.disc-combined-types-table table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.disc-combined-types-table thead {
	background: linear-gradient(135deg, #6eb92b 0%, #056836 100%);
	color: #fff;
}

.disc-combined-types-table th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
	font-size: 15px;
}

.disc-combined-types-table td {
	padding: 15px;
	border-bottom: 1px dashed #e0e0e0;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
}

.disc-combined-types-table tbody tr:last-child td {
	border-bottom: none;
}

.disc-combined-types-table tbody tr:nth-child(odd) {
	background: #f9f9f9;
}

.disc-combined-types-table tbody tr:hover {
	background: #f0f7ed;
}

.disc-combined-types-table td strong {
	color: #056836;
	font-weight: 600;
}

/* Responsive cho nút thông tin */
@media (max-width: 768px) {
	.disc-info-buttons {
		flex-direction: column;
	}
	
	.disc-info-btn {
		min-width: 100%;
	}
	
	.disc-info-modal-content {
		width: 95%;
		max-height: 70vh;
	}
	
	.disc-info-modal-body {
		padding: 20px;
	}
	
	.disc-combined-types-table {
		font-size: 12px;
	}
	
	.disc-combined-types-table th,
	.disc-combined-types-table td {
		padding: 10px;
		font-size: 12px;
	}
}

/* ===== Brand refresh (2026) ===== */
.disc-test-pro-container {
	--disc-brand-1: #FF8054;
	--disc-brand-2: #4D7B3A;
	--disc-brand-3: #FF9E6F;
	--disc-brand-4: #FFF8EC;
	--disc-ink: #2b1f17;
	--disc-soft-border: #F2D6C7;
	font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
	background: var(--disc-brand-4);
	box-shadow: 0 18px 45px rgba(43, 31, 23, 0.12);
}

.disc-test-pro-header {
	background: linear-gradient(90deg, #F05A27 0%, #FB8B28 100%);
	padding: 28px 28px 20px;
}

.disc-test-pro-header h2 {
	color:#fff;
	font-weight: 700;
}

.disc-test-pro-description {
	color: #fff;
}

.disc-submit-btn,
.disc-btn-primary,
.disc-nav-btn {
	border: none;
	color: #fff;
	box-shadow: 0 10px 20px rgba(255, 128, 84, 0.25);
	background: linear-gradient(90deg, #F05A27 0%, #FB8B28 100%);

}

.disc-submit-btn:hover,
.disc-btn-primary:hover,
.disc-nav-btn:hover {
	filter: brightness(0.96);
}

.disc-btn-secondary {
	background: #fff;
	border: 1px solid var(--disc-soft-border);
	color: #6b4b38;
}

.disc-info-btn {
	background: #fff;
	border: 1px solid var(--disc-soft-border);
	color: #6b4b38;
}

.disc-result-card,
.disc-graph-wrapper {
	background: #fff;
	border: 1px solid var(--disc-soft-border);
	box-shadow: 0 10px 30px rgba(43, 31, 23, 0.08);
}

.disc-result-pattern-bg {
	background: linear-gradient(135deg, #FFE3D6 0%, #FFD3C0 100%);
	color: #5a3a2a;
}

.disc-result-pattern-name {
	color: var(--disc-ink);
}

.disc-result-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 10px 0 6px;
}

.disc-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid var(--disc-soft-border);
	background: #fff7f2;
	color: #6b4b38;
	font-size: 12px;
	font-weight: 600;
}

.disc-badge-primary {
	background: var(--disc-brand-1);
	color: #fff;
	border-color: transparent;
}

.disc-badge-secondary {
	background: var(--disc-brand-2);
	color: #fff;
	border-color: transparent;
}

.disc-svg-graph-container {
	border: none;
	padding: 0;
	background: transparent;
}

.disc-line-svg {
	width: 100%;
	height: auto;
	display: block;
}

.disc-legend-line.disc-legend-green {
	background: var(--disc-brand-1);
}

.disc-legend-line.disc-legend-red {
	background: var(--disc-brand-2);
}

.disc-result-sections {
	margin: 24px 0 10px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.disc-section-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.disc-section-card {
	background: #fff;
	border: 1px solid var(--disc-soft-border);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 8px 18px rgba(43, 31, 23, 0.08);
	font-size: 16px;
}

.disc-section-card h4 {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--disc-ink);
}

.disc-section-card p {
	margin: 0;
	color: #5b4a3a;
	line-height: 1.5;
}

.disc-section-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.disc-section-card ul li {
	position: relative;
	padding-left: 18px;
	color: #5b4a3a;
	line-height: 1.5;
}

.disc-section-card ul li::before {
	content: "\2022";
	position: absolute;
	left: 0;
	color: var(--disc-brand-1);
	font-weight: 700;
}

.disc-section-full {
	grid-column: 1 / -1;
}

@media (max-width: 768px) {
	.disc-test-pro-container {
		margin: 0;
	}

	.disc-section-card {
		border-radius: 14px;
	}
}

.disc-question-item {
	background: #fff;
	border: 1px solid var(--disc-soft-border);
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(43, 31, 23, 0.08);
}

.disc-question-header {
	border-bottom: 1px dashed #E7D5C7;
}

.disc-options-table th {
	background: #FFF3EB;
	color: #6b4b38;
}

.disc-option-row:hover {
	background: #FFF8F2;
}

.disc-radio-custom {
	border-color: var(--disc-brand-1);
}

.disc-option-input-most:checked + .disc-radio-custom {
	background: var(--disc-brand-1);
	border-color: var(--disc-brand-1);
}

.disc-option-input-least:checked + .disc-radio-custom {
	background: var(--disc-brand-2);
	border-color: var(--disc-brand-2);
}

.text-red {
	color: var(--disc-brand-1) !important;
}

.text-blue {
	color: var(--disc-brand-2) !important;
}

.disc-graph-wrapper {
	padding: 24px;
}

.disc-svg-graph-container {
	min-height: auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.row-disc-result {
	display: flex;
	gap: 20px;
	align-items: stretch;
}

.row-disc-result > .disc-result-left {
	flex: 0 0 280px;
	max-width: 280px;
}

.row-disc-result > .disc-graph {
	flex: 1;
}

@media (max-width: 768px) {
	.row-disc-result {
		flex-direction: column;
		padding:0 15px
	}
	.row-disc-result > .disc-result-left,
	.row-disc-result > .disc-graph {
		max-width: 100%;
	}
}

/* Cleanup legacy result blocks */
.disc-result-image-wrapper,
.disc-result-pattern-bg,
.disc-pattern-image {
	display: none !important;
}

.disc-graph-legend > p {
	display: none;
}

.disc-analysis-title {
	display: none;
}


.disc-line-svg {
	min-height: 336px;
}

/* ===== Form UI refresh ===== */
.disc-test-pro-container {
	background: linear-gradient(106.1deg, #F8E1CB -21.2%, #FEF4E4 27.05%, #DFEECC 94.34%);
	border-radius: 24px;
}

.disc-test-pro-header {
	text-align: center;
	padding: 32px 36px 24px;
}

.disc-test-pro-header h2 {
	font-size: 28px;
	letter-spacing: 0.3px;
}

.disc-test-pro-description {
	max-width: 760px;
	margin: 8px auto 0;
	font-size: 15px;
	line-height: 1.6;
}

.disc-info-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px 0 20px;
}

.disc-info-btn {
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 600;
	box-shadow: 0 8px 18px rgba(255, 128, 84, 0.12);
}

.disc-test-title h2 {
	font-size: 22px;
	margin-bottom: 8px;
}

.disc-test-instructions {
	background: #fff;
	border: 1px solid #F3D8C9;
	border-left: 4px solid var(--disc-brand-2);
	border-radius: 16px;
	padding: 18px 20px;
	box-shadow: 0 10px 24px rgba(43, 31, 23, 0.06);
}

.disc-test-instructions h3 {
	font-size: 16px;
	margin-top: 0;
}

.disc-question-item {
	border-radius: 20px;
	overflow: hidden;
}

.disc-question-header {
	background: linear-gradient(106.1deg, #FFF4EA -21.2%, #FFD7B6 27.05%, #FFF4EA 94.34%);
	padding: 14px 18px;
}

.disc-question-number {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.disc-question-instruction p {
	margin: 6px 0 0;
	font-size: 16px;
}

.disc-options-table {
	background: #fff;
}

.disc-options-table th {
	background: #FFF0E5;
	font-weight: 700;
}

.disc-options-table td {
	padding: 14px 14px;
}

.disc-option-row:nth-child(even) {
	background: #FFFDF9;
}

.disc-option-text {
	font-size: 15px;
	color: #3a2b21;
}

.disc-radio-custom {
	width: 22px;
	height: 22px;
	border-width: 2px;
	border-radius: 50%;
}

.disc-option-input-most:checked + .disc-radio-custom {
	box-shadow: 0 0 0 4px rgba(255, 128, 84, 0.18);
}

.disc-option-input-least:checked + .disc-radio-custom {
	box-shadow: 0 0 0 4px rgba(77, 123, 58, 0.2);
}

.disc-navigation-wrapper {
	display: flex;
	justify-content: space-between;
	margin: 16px 0 8px;
}

.disc-nav-btn,
.disc-submit-btn {
	border-radius: 14px;
	padding: 12px 20px;
	font-weight: 700;
}

.disc-submit-btn {
	font-size: 15px;
}

.disc-test-pro-actions {
	margin-top: 8px;
}

@media (max-width: 768px) {
	.disc-test-pro-header h2 {
		font-size: 20px;
	}
	.disc-test-instructions {
		padding: 14px 16px;
	}
	.disc-options-table td {
		padding: 12px 10px;
	}
}

/* Color mapping: Most = brand green, Least = brand orange */
.disc-option-row:has(.disc-option-input-most:checked) .disc-option-text {
	color: var(--disc-brand-2) !important;
}

.disc-option-row:has(.disc-option-input-least:checked) .disc-option-text {
	color: var(--disc-brand-1) !important;
}

.disc-radio-custom {
	border-color: #E1D2C2;
}

.disc-option-input-most:checked + .disc-radio-custom {
	background: var(--disc-brand-2) !important;
	border-color: var(--disc-brand-2) !important;
	box-shadow: 0 0 0 4px rgba(77, 123, 58, 0.18);
}

.disc-option-input-least:checked + .disc-radio-custom {
	background: var(--disc-brand-1) !important;
	border-color: var(--disc-brand-1) !important;
	box-shadow: 0 0 0 4px rgba(255, 128, 84, 0.18);
}

.disc-legend-line.disc-legend-green {
	background: var(--disc-brand-2) !important;
}

.disc-legend-line.disc-legend-red {
	background: var(--disc-brand-1) !important;
}

