﻿.request-section {
	margin-bottom: 2rem;
}

.request-info {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.request-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.request-grid-client {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.request-grid-user {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1.5fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.request-grid-detail {
	display: grid;
	grid-template-columns: 35% 65%;
	gap: 1rem;
	margin-bottom: 1rem;
}

.field,
.field-large,
.field-small {
	display: flex;
	flex-direction: column;
	font-size: 13px;
}

.field-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: .35rem;
}

.field label {
	margin-bottom: .35rem;
	font-weight: 600;
}

.field-large textarea {
	min-height: 90px;
}

.content-layout {
	display: grid;
	grid-template-columns: 58% 42%;
	gap: 2rem;
}

.panel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.panel-section {
	margin-top: 2rem;
}

.notes-box {
	min-height: 100px;
}

.note-footer {
	font-size: 13px;
}

.checklist-card {
	border: 1px solid var(--ek-border-color);
	border-radius: 10px;
	overflow: hidden;
}

.checklist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid var(--ek-border-color);
}

.checklist-actions {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.checklist-body {
	min-height: 340px;
	overflow: auto;
}

.btn-add {
	width: 30px;
	height: 20px;
	padding: 0;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
}

	.btn-add i {
		font-size: 0.7rem;
		font-weight: 600;
	}

.checklist-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.checklist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

	.checklist-header h5 {
		margin: 0;
		font-weight: 600;
	}

	.checklist-header small {
		color: #6b7280;
	}



.checklist-progress {
	height: 8px;
	border-radius: 10px;
	overflow: hidden;
	background: #eef2f7;
	margin-bottom: 18px;
}

.progress-bar {
	background: var(--ek-red-dark);
}

.checklist-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 300px;
	overflow-y: auto;
	padding-right: 4px;
}

.checklist-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid #ececec;
	border-radius: 10px;
	transition: .2s;
}

	.checklist-item:hover {
		border-color: var(--ek-red);
		box-shadow: 0 3px 10px rgba(0,0,0,.05);
	}

.check-input {
	width: 20px;
	height: 20px;
	accent-color: var(--ek-red);
}

.check-title {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-size: 14px;
}

	.check-title:focus {
		outline: none;
	}

.btn-delete {
	border: none;
	background: transparent;
	color: #dc2626;
	width: 34px;
	height: 34px;
	border-radius: 8px;
}

	.btn-delete:hover {
		background: #fee2e2;
	}

.checklist-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
	color: #9ca3af;
	gap: 10px;
}

	.checklist-empty i {
		font-size: 32px;
	}

@media (max-width:1100px) {

	.request-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.content-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width:768px) {

	.request-info {
		flex-direction: column;
	}

	.request-grid {
		grid-template-columns: 1fr;
	}
}
