:root {
	--bg-color: #ffffff;
	--surface-color: #f8fafc;
	--primary-color: #0ea5e9;
	--text-color: #0f172a;
	--text-light: #64748b;
	--error-color: #ef4444;
	--success-color: #10b981;
	--border-color: #e2e8f0;
	--white: #fff;
	--black: #000;
	--primary: #333541;
	--darkgray: #2C2C33;
	--neutralgray: #6B6B6B;
	--grey32: #525252;
	--grey200: #D6D6D6;
	--stonegrey: #F4F5F6;
	--red: #E31837;
	--red600: #B8142D;
	--red700: #8E0F22;
	--orange: #FF8300;
	--orangeDark: #9F5200;
	--lightorange: #FF9626;
	--maroon: #603100;
	--burgendyred: #A61242;
	--blue: #006DCA;
	--blue-set-500: #0000FF;
	--blue-set-50: #E5E5FF;
	--tonedwhite: #E6E9EC;
	--pink: #FDE8EB;
	--lightgray: #FAFAFA;
	--whitesmoke: #F5F5F5;
}

body {
	background-color: var(--bg-color);
	min-height: 100vh;
	padding: 2rem;
}

/* Form Stilleri */
.wdm-verify-form-container {
	max-width: 420px;
	margin: 0 auto;
	padding: 24px;
	background: var(--surface-color);
	border-radius: 16px;
	border: 1px solid var(--border-color);
}

.wdm-verify-form-container input {
	width: 100%;
	max-width: 100%;
}

.wdm-form {
	width: 100%;
}

.wdm-form-row {
	margin-bottom: 2rem;
	position: relative;
}

.wdm-form-row label {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 500;
	color: var(--text-color);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wdm-form-row input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--bg-color);
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	color: var(--text-color);
	transition: all 0.2s ease;
}

.wdm-form-row input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.wdm-form-row input::placeholder {
	color: var(--text-light);
}

/* Buton Stilleri */
.wdm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.5rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.025em;
	transition: all 0.2s ease;
	min-width: 140px;
}

.wdm-button:hover {
	background: #0284c7;
	transform: translateY(-1px);
}

.wdm-button:active {
	transform: translateY(0);
}

.wdm-button:disabled {
	background: var(--border-color);
	color: var(--text-light);
	cursor: not-allowed;
}

.wdm-button-secondary {
	background: var(--bg-color);
	color: var(--text-color);
	border: 2px solid var(--border-color);
}

.wdm-button-secondary:hover {
	background: var(--surface-color);
	border-color: var(--text-light);
}

/* Mesaj Stilleri */
.wdm-error, .wdm-success {
	padding: 1rem;
	border-radius: 8px;
	margin: 1rem 0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.wdm-error {
	color: var(--error-color);
	background: #fef2f2;
	border: 1px solid #fee2e2;
}

.wdm-success {
	color: var(--success-color);
	background: #f0fdf4;
	border: 1px solid #dcfce7;
}

/* Yükleme Animasyonu */
.wdm-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.wdm-loading-spinner {
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid var(--border-color);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

/* Belge Detayları */
.wdm-document-details {
	max-width: 720px;
	margin: 2rem auto;
}

.wdm-document-content {
	position: relative;
}

.wdm-document-content:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

.wdm-detail-row {
	display: flex;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
	transition: background-color 0.2s ease;
}

.wdm-detail-row:last-child {
	border-bottom: none;
}

.wdm-detail-row:first-child {
	padding-top: 1.5rem;
}

.wdm-detail-row strong {
	flex: 0 0 180px;
	color: var(--text-light);
	font-weight: 500;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wdm-detail-row span {
	flex: 1;
	color: var(--text-color);
	font-size: 0.875rem;
}

.wdm-actions {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
	.wdm-verify-form-container {
		margin: 1rem;
		padding: 1.5rem;
	}

	.wdm-document-details {
		margin: 1.5rem 1rem;
	}

	.wdm-detail-row {
		flex-direction: column;
		gap: 0.5rem;
	}

	.wdm-detail-row strong {
		flex: none;
	}

	.wdm-actions {
		flex-direction: column;
		gap: 0.75rem;
	}

	.wdm-button {
		width: 100%;
	}
}

/* IELTS Sorgu Formu Stilleri */
.d-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.align-items-center {
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.text-center {
	text-align: center;
}

.w-100 {
	width: 100%;
}

/* Boşluk Sınıfları */
.gap6 {
	gap: 6px;
}

.gap8 {
	gap: 8px;
}

.gap16 {
	gap: 16px;
}

.gap24 {
	gap: 24px;
}

.gap32 {
	gap: 32px;
}

/* Padding Sınıfları */
.p-48 {
	padding: 48px;
}

.px-48 {
	padding-left: 48px;
	padding-right: 48px;
}

.py-64 {
	padding-top: 64px;
	padding-bottom: 64px;
}

/* Renk Sınıfları */
.clr-primary {
	color: var(--primary);
}

.clr-black {
	color: var(--black);
}

.bg-white-force {
	background-color: var(--white) !important;
}

/* Form Stilleri */
.background-white-smoke {
	background-color: var(--whitesmoke);
}

.mw-640 {
	max-width: 640px;
	margin: 0 auto;
}

.rounded {
	border-radius: 8px;
}

.rounded-full {
	border-radius: 999px;
}

.custom_input_group input {
	height: 48px;
	max-width: 95%;
	padding: 12px 16px;
	border: 1px solid var(--grey200);
	border-radius: 8px;
	font-size: 16px;
	line-height: 24px;
	color: var(--primary);
}

.custom_input_group input::placeholder {
	color: var(--neutralgray);
}

.button {
	padding: 12px 24px;
	font-size: 16px;
	line-height: 24px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.button-primary {
	background-color: var(--red);
	color: var(--white);
}

.button-primary:hover {
	background-color: var(--red600);
}

.button-primary-padding {
	padding: 16px 24px;
}

/* Tipografi */
.heading2 {
	font-size: 32px;
	font-weight: 600;
}

.paragraph {
	font-size: 16px;
	line-height: 24px;
}

.font-opensans {
	font-family: "Open Sans", sans-serif;
}

.font-semi-bold {
	font-weight: 600;
}

.fontsize-12 {
	font-size: 12px;
	line-height: 16px;
}

/* Responsive */
@media only screen and (max-width: 900px) {
	.gap10-900 {
		gap: 10px;
	}
	
	.gap24-900 {
		gap: 24px;
	}
	
	.p-32-900 {
		padding: 32px;
	}
	
	.px-24-900 {
		padding-left: 24px;
		padding-right: 24px;
	}
	
	.py-32-900 {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	
	.heading2 {
		font-size: 24px;
		line-height: 32px;
	}
}

@media only screen and (max-width: 767px) {
	.p-0-767 {
		padding: 0;
	}
	
	.w-100-767 {
		width: 100%;
	}
	
	.custom_input_group_bottom img {
		width: 100%;
		height: auto;
		max-width: 300px;
	}
}

/* Loading Spinner */
.spinner-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 9999;
}

.spinner-wrapper {
	width: 100%;
	height: 100%;
}

.spinner {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.spinner div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--red);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.spinner div:nth-child(1) {
	left: 8px;
	animation: spinner1 0.6s infinite;
}

.spinner div:nth-child(2) {
	left: 8px;
	animation: spinner2 0.6s infinite;
}

.spinner div:nth-child(3) {
	left: 32px;
	animation: spinner2 0.6s infinite;
}

.spinner div:nth-child(4) {
	left: 56px;
	animation: spinner3 0.6s infinite;
}

@keyframes spinner1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes spinner3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}

@keyframes spinner2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}

.hide {
	display: none !important;
}

/* Hata Durumu */
.custom_input_group.custom_error input {
	border-color: var(--red);
	background-color: var(--pink);
}

/* Form Stilleri */
.custom_input_buttons_group {
	margin-top: 24px;
}

/* Hata Durumu Stilleri */
.list-disc {
	list-style-type: disc;
	margin-left: 20px;
}

.gap16 {
	gap: 16px;
}

.gap24 {
	gap: 24px;
}

.gap32 {
	gap: 32px;
}

.d-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.justify-content-center {
	justify-content: center;
}

.no-result-logo_wrapper {
	margin-bottom: 16px;
}

.no_result_content {
	text-align: left;
}

.no_result_content h1 {
	margin-bottom: 8px;
}

.no_result_content p {
	margin-bottom: 8px;
}

.no_result_content ul {
	margin-bottom: 16px;
}

.no_results_close {
	margin-top: 24px;
}

/* Başarılı Sonuç Stilleri */
.wdm-success-message {
	text-align: center;
	padding: 32px;
}

.wdm-success-message h2 {
	color: var(--primary);
	font-size: 24px;
	margin-bottom: 24px;
}

.wdm-result-details {
	background: var(--stonegrey);
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 24px;
}

.wdm-result-details p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--grey200);
	font-family: "Open Sans", sans-serif;
}

.wdm-result-details p:last-child {
	border-bottom: none;
	font-weight: 600;
}
