.crew-form-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.crew-form-container h2 {
	color: #272833;
	margin-bottom: 10px;
}

.crew-form-container .subtitle {
	color: #6b6c7e;
	margin-bottom: 30px;
}

.tabs-nav {
	display: flex;
	border-bottom: 2px solid #e7e7ed;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.tabs-nav button {
	padding: 15px 25px;
	border: none;
	background: none;
	cursor: pointer;
	color: #6b6c7e;
	font-size: 14px;
	font-weight: 600;
	position: relative;
	transition: color 0.2s;
}

.tabs-nav button:hover {
	color: #272833;
}

.tabs-nav button.active {
	color: #0b5fff;
}

.tabs-nav button.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #0b5fff;
}

.form-section {
	background: #fff;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	margin-bottom: 25px;
}

.form-section:last-child {
	margin-bottom: 0;
}

.submit-section {
	text-align: center;
	padding: 30px;
	background: #f0f5ff;
	border: 2px dashed #0b5fff;
}

.form-section h3 {
	color: #272833;
	font-size: 18px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #0b5fff;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 13px;
	font-weight: 600;
	color: #272833;
	margin-bottom: 5px;
}

.form-group label .required {
	color: #da1414;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 10px 12px;
	border: 1px solid #e7e7ed;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #0b5fff;
	box-shadow: 0 0 0 3px rgba(11, 95, 255, 0.1);
}

.form-group textarea {
	min-height: 80px;
	resize: vertical;
}

.sea-service-entry {
	border: 1px solid #e7e7ed;
	border-left: 4px solid #0b5fff;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
	background: #f7f8f9;
}

.sea-service-entry .entry-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.sea-service-entry .entry-number {
	font-weight: 600;
	color: #0b5fff;
}

.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: background-color 0.2s;
}

.btn-primary {
	background: #0b5fff;
	color: white;
}

.btn-primary:hover {
	background: #0053f0;
}

.btn-primary:disabled {
	background: #80aaff;
	cursor: not-allowed;
}

.btn-secondary {
	background: #e7e7ed;
	color: #272833;
}

.btn-secondary:hover {
	background: #d3d3d9;
}

.btn-danger {
	background: #da1414;
	color: white;
	padding: 5px 10px;
	font-size: 12px;
}

.btn-danger:hover {
	background: #b91010;
}

.btn-lg {
	padding: 15px 30px;
	font-size: 16px;
}

.alert-info {
	background: #eef2fa;
	border: 1px solid #89a7e0;
	border-radius: 4px;
	padding: 15px 20px;
	margin-bottom: 20px;
	color: #2e5aac;
}

.summary-section {
	background: #f7f8f9;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}

.summary-section h4 {
	margin-bottom: 15px;
	color: #272833;
}

.summary-section p {
	margin: 5px 0;
	color: #6b6c7e;
}

.summary-section strong {
	color: #272833;
}

.certificate-group {
	margin-bottom: 30px;
}

.certificate-group h4 {
	color: #6b6c7e;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.certificate-group h4:hover {
	color: #272833;
}

.certificate-item {
	background: #f7f8f9;
	border-radius: 4px;
	padding: 15px;
	margin-bottom: 10px;
}

.certificate-item h5 {
	color: #272833;
	font-size: 14px;
	margin-bottom: 10px;
	border-left: 3px solid #0b5fff;
	padding-left: 10px;
}

.loading-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-right: 8px;
}

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

.photo-dropzone {
	width: 150px;
	height: 200px;
	border: 2px dashed #e7e7ed;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s;
	background: #f7f8f9;
	gap: 8px;
}

.photo-dropzone:hover {
	border-color: #0b5fff;
	background: #f0f5ff;
}

.photo-dropzone .photo-icon {
	font-size: 36px;
	color: #6b6c7e;
	line-height: 1;
}

.photo-dropzone span {
	font-size: 12px;
	color: #6b6c7e;
}

.photo-preview {
	position: relative;
	width: 150px;
	height: 200px;
}

.photo-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #e7e7ed;
}

.photo-remove {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #da1414;
	color: white;
	border: none;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	padding: 0;
}

.photo-remove:hover {
	background: #b91010;
}

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mb-3 { margin-bottom: 15px; }