	[v-cloak] { display: none !important; }
	/* 스텝 인디케이터 스타일 */
	.step-indicator {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 20px 0;
		padding: 20px;
		background: #f8f9fa;
		border-radius: 8px;
		border: 1px solid #e9ecef;
		flex-wrap: wrap;
		gap: 10px;
	}

	.step-indicator .step-item {
		position: relative;
		flex: 1;
		text-align: center;
		color: #6c757d;
		font-size: 13px;
		min-width: 80px;
	}

	.step-indicator .step-item:not(:last-child):after {
		content: '';
		position: absolute;
		top: 15px;
		left: calc(50% + 25px);
		right: calc(-50% + 25px);
		height: 2px;
		background-color: #dee2e6;
		z-index: 1;
	}

	.step-indicator .step-item .step-circle {
		display: inline-block;
		width: 30px;
		height: 30px;
		line-height: 30px;
		border-radius: 50%;
		background-color: #dee2e6;
		color: #6c757d;
		font-size: 14px;
		font-weight: bold;
		margin-bottom: 8px;
		position: relative;
		z-index: 2;
		transition: all 0.3s ease;
	}

	.step-indicator .step-item .step-label {
		font-weight: 500;
		transition: all 0.3s ease;
		font-size: 14px;
		white-space: nowrap;
	}

	.step-indicator .step-item .step-time {
		font-size: 11px;
		color: #6c757d;
		margin-top: 4px;
		line-height: 1.2;
		height: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.step-indicator .step-item.completed .step-circle {
		background-color: #016CBA;
		color: #ffffff;
	}

	.step-indicator .step-item.completed:not(:last-child):after {
		background-color: #016CBA;
	}

	.step-indicator .step-item.completed {
		color: #016CBA;
	}

	.step-indicator .step-item.completed .step-time {
		color: #016CBA;
		font-weight: 500;
	}

	.step-indicator .step-item.rejected .step-circle {
		background-color: #f46565;
		color: #ffffff;
	}

	.step-indicator .step-item.rejected {
		color: #f46565;
	}

	.step-indicator .step-item.rejected .step-time {
		color: #f46565;
		font-weight: 500;
	}

	.step-indicator .step-item.disabled .step-circle {
		background-color: #e9ecef;
		color: #adb5bd;
	}

	.step-indicator .step-item.disabled {
		color: #adb5bd;
	}

	.monitoring-btn {
		margin-top: 15px;
		padding: 8px 16px;
		border-radius: 6px;
		border: none;
		background-color: #28a745;
		color: white;
		font-size: 14px;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.monitoring-btn:hover {
		background-color: #218838;
	}

	/* 반응형 스타일 - 기존 프로젝트 브레이크포인트에 맞춤 */
	@media screen and (max-width: 1280px) {
		.step-indicator {
			padding: 18px 15px;
		}

		.step-indicator .step-item {
			min-width: 75px;
		}

		.step-indicator .step-item .step-label {
			font-size: 13px;
		}
	}

	@media screen and (max-width: 1024px) {
		.step-indicator {
			padding: 16px 12px;
			margin: 16px 0;
		}

		.step-indicator .step-item {
			min-width: 70px;
			font-size: 12px;
		}

		.step-indicator .step-item .step-circle {
			width: 28px;
			height: 28px;
			line-height: 28px;
			font-size: 13px;
		}

		.step-indicator .step-item .step-label {
			font-size: 12px;
		}

		.step-indicator .step-item .step-time {
			font-size: 10px;
		}

		.step-indicator .step-item:not(:last-child):after {
			top: 14px;
			left: calc(50% + 22px);
			right: calc(-50% + 22px);
		}
	}

	@media screen and (max-width: 768px) {
		.step-indicator {
			padding: 15px 10px;
			margin: 15px 0;
		}

		.step-indicator .step-item {
			min-width: 60px;
			font-size: 11px;
		}

		.step-indicator .step-item .step-circle {
			width: 24px;
			height: 24px;
			line-height: 24px;
			font-size: 12px;
			margin-bottom: 6px;
		}

		.step-indicator .step-item .step-label {
			font-size: 11px;
		}

		.step-indicator .step-item .step-time {
			font-size: 9px;
			height: 14px;
		}

		.step-indicator .step-item:not(:last-child):after {
			top: 12px;
			left: calc(50% + 20px);
			right: calc(-50% + 20px);
		}

		.monitoring-btn {
			font-size: 12px;
			padding: 8px 16px;
			margin-top: 10px;
		}
	}



	@media screen and (max-width: 540px) {
		.step-indicator {
			flex-direction: column;
			gap: 12px;
			padding: 12px;
		}

		.step-indicator .step-item {
			flex: none;
			width: 100%;
			display: flex;
			align-items: center;
			text-align: left;
			padding: 8px 12px;
			background: white;
			border-radius: 6px;
			border: 1px solid #e9ecef;
			box-shadow: 0 1px 3px rgba(0,0,0,0.1);
		}

		.step-indicator .step-item:not(:last-child):after {
			display: none;
		}

		.step-indicator .step-item .step-circle {
			margin-right: 12px;
			margin-bottom: 0;
			flex-shrink: 0;
			width: 20px;
			height: 20px;
			line-height: 20px;
			font-size: 10px;
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.step-indicator .step-item .step-content {
			flex: 1;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.step-indicator .step-item .step-label {
			font-size: 12px;
			margin-bottom: 0;
			font-weight: 600;
		}

		.step-indicator .step-item .step-time {
			height: auto;
			justify-content: flex-end;
			font-size: 10px;
			margin-top: 0;
			margin-left: 8px;
		}

		.monitoring-btn {
			width: 100%;
			padding: 10px;
			font-size: 13px;
			margin-top: 12px;
		}
		.map-selector-wrap{
			width: 100%;
			height: 100%;
			display: flex;
			flex-direction: column;
		}
	}

	/* 구난신고 폼 스타일 */
.emergency-report-form {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-select,
.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-select:focus,
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

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

.location-input-group {
    display: flex;
    gap: 10px;
}

.location-input-group .form-input {
    flex: 1;
}

.location-input-group .btn {
    white-space: nowrap;
    padding: 12px 20px;
}

.location-coords {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.coord-item {
    display: inline-block;
    margin-right: 20px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #007bff;
    color: white;
}

.btn.primary:hover {
    background: #0056b3;
}

.btn.secondary {
    background: #6c757d;
    color: white;
}

.btn.secondary:hover {
    background: #545b62;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .emergency-report-form {
        padding: 15px;
        margin: 0 10px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .location-input-group {
        flex-direction: column;
    }
    
    .location-input-group .btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* 지도 선택 모드 스타일 */
.map-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.map-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.map-selector-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #333;
}

.map-selector-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.selector-map {
    width: 100%;
    height: 100%;
}

.map-center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
}

.marker-pin {
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marker-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-address-display {
    position: absolute;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.current-address {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.current-coords {
    font-size: 12px;
    color: #666;
    display: flex;
    gap: 15px;
}

.current-coords span {
    display: block;
}

.map-selector-actions {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.map-selector-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-selector-actions .btn.primary {
    background: #007bff;
    color: white;
}

.map-selector-actions .btn.primary:hover {
    background: #0056b3;
}

.map-selector-actions .btn.secondary {
    background: #6c757d;
    color: white;
}

.map-selector-actions .btn.secondary:hover {
    background: #545b62;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .map-selector-header {
        padding: 12px 15px;
    }
    
    .map-selector-header h3 {
        font-size: 16px;
    }
    
    .map-address-display {
		bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px;
        width: 100%;
        height: auto;
        border-radius: 8px 8px 0 0;
    }
    
    .current-address {
        font-size: 13px;
    }
    
    .current-coords {
        font-size: 11px;
        flex-direction: column;
        gap: 5px;
    }
    
    .map-selector-actions {
        padding: 15px;
    }
}

/* 반응형 대여 옵션 레이아웃 - 기존 프로젝트 패턴 적용 */
.rental-terminal-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rental-terminal-item {
    flex: 1;
}

/* 태블릿 이하 - 기존 프로젝트 breakpoint 1024px 사용 */
@media screen and (max-width: 1024px) {
    .rental-terminal-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .rental-terminal-item {
        flex: none;
        width: 100%;
    }
    
    .rental-terminal-item .select {
        width: 100%;
        font-size: 14px;
    }
}

/* 모바일 - 기존 프로젝트 breakpoint 640px 사용 */
@media screen and (max-width: 640px) {
    .rental-terminal-flex {
        gap: 10px;
    }
}