.notice-view-title {
	margin-bottom: 20px;
	padding: 15px;
	border-bottom: 1px solid #e0e0e0;
}

.notice-view-title-content {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.notice-view-meta {
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 10px;
}

.notice-view-separator {
	color: #ccc;
}

@media (max-width: 768px) {
	.notice-view-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.notice-view-separator {
		display: none;
	}
}

.notice-view-title.style-gray {
	background-color: #f8f9fa;
}

.notice-view-meta.align-right {
	justify-content: flex-end;
}

.inquiry-section {
    background: #ffffff;
    border: 1px solid #e9ecef;
    margin-bottom: 24px;
    overflow: hidden;
}

.inquiry-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: #495057;
    font-size: 16px;
}

.inquiry-content {
    padding: 20px;
}

.inquiry-info-minimal {
    background: #ffffff;
    margin-bottom: 20px;
}

.minimal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.minimal-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.minimal-item:last-child {
    border-bottom: none;
}

.minimal-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
    flex-shrink: 0;
}

.minimal-value {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.inquiry-text {
    color: #495057;
    line-height: 1.7;
}

.consultation-section {
    background: #ffffff;
    border: 1px solid #d1ecf1;
    margin-top: 24px;
    overflow: hidden;
}

.consultation-header {
    background: #d1ecf1;
    padding: 12px 20px;
    border-bottom: 1px solid #bee5eb;
    font-weight: 600;
    color: #0c5460;
    font-size: 16px;
}

.consultation-content {
    padding: 20px;
    background: #f7fdff;
    border-left: 4px solid #17a2b8;
}

.consultation-text {
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

.attachment-section {
    margin: 16px 0;
}

.attachment-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.attachment-item:last-child {
    border-bottom: none;
}

.attachment-label {
    min-width: 100px;
    font-weight: 500;
    color: #6c757d;
}

.attachment-link {
    color: #007bff;
    text-decoration: none;
}

.attachment-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .inquiry-content, .consultation-content {
        padding: 16px;
    }
    
    .inquiry-header, .consultation-header {
        padding: 10px 16px;
        font-size: 15px;
    }
    
    .attachment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .attachment-label {
        min-width: auto;
    }

}