/* Stok Sayımı Özel Stilleri */
#stok-sayim-container {
	padding: 20px;
}

.header-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
	gap: 20px;
}

.header-left {
	flex: 1;
}

.page-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 8px 0;
	display: flex;
	align-items: center;
}

.page-title i {
	color: var(--anarenk);
	margin-right: 12px;
}

.page-subtitle {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
}

.header-right {
	display: flex;
	gap: 16px;
}

.stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--bg-primary);
	padding: 20px 24px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	border: 1px solid var(--border-color);
	min-width: 200px;
}

.stat-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	background: linear-gradient(135deg, var(--anarenk) 0%, var(--kirmizi) 100%);
}

.stat-info {
	flex: 1;
}

.stat-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 12px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stok-sayim-table {
	width: 100%;
}

.stok-sayim-row:hover {
	background: var(--bg-secondary);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: all 0.3s ease;
}

.input-wrapper {
	position: relative;
	width: 100%;
}

.input-wrapper .form-control {
	width: 100%;
	padding: 12px 16px;
	padding-right: 40px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	background: var(--bg-primary);
}

.input-wrapper .form-control:focus {
	border-color: var(--anarenk);
	box-shadow: 0 0 0 3px rgba(254, 73, 44, 0.1);
	outline: none;
}

.input-wrapper .readonly-input {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-color: #dee2e6;
	cursor: not-allowed;
	color: var(--text-secondary);
}

.input-wrapper .readonly-input:focus {
	border-color: #dee2e6;
	box-shadow: none;
}

.input-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	font-size: 16px;
	pointer-events: none;
}

.unit-badge {
	display: inline-block;
	padding: 6px 12px;
	background: linear-gradient(135deg, rgba(254, 73, 44, 0.1) 0%, rgba(254, 73, 44, 0.05) 100%);
	color: var(--anarenk);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid rgba(254, 73, 44, 0.2);
}

.btn-save-difference {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--anarenk) 0%, var(--kirmizi) 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(254, 73, 44, 0.3);
}

.btn-save-difference:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(254, 73, 44, 0.4);
}

.btn-save-difference:active {
	transform: translateY(0);
}

.btn-save-difference:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn-save-difference i {
	font-size: 16px;
}

.fark-input.positive {
	color: #10b981 !important;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%) !important;
	border-color: rgba(16, 185, 129, 0.3) !important;
}

.fark-input.negative {
	color: #ef4444 !important;
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%) !important;
	border-color: rgba(239, 68, 68, 0.3) !important;
}

.fark-input.neutral {
	color: var(--text-primary) !important;
}

.empty-state {
	text-align: center;
	padding: 60px 20px;
}

.empty-state-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, rgba(254, 73, 44, 0.1) 0%, rgba(254, 73, 44, 0.05) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.empty-state-icon i {
	font-size: 48px;
	color: var(--anarenk);
}

.empty-state-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 8px 0;
}

.empty-state-text {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0 0 24px 0;
}

@media (max-width: 768px) {
	.header-section {
		flex-direction: column;
	}
	
	.stat-card {
		width: 100%;
	}
	
	.stok-sayim-table {
		font-size: 12px;
	}
	
	.input-wrapper .form-control {
		padding: 8px 12px;
		padding-right: 32px;
		font-size: 12px;
	}
	
	.btn-save-difference {
		padding: 8px 16px;
		font-size: 12px;
	}
	
	.btn-save-difference span {
		display: none;
	}
}

