
    
    /* 섹션 디자인 */
    .summary-section {
        margin-bottom: 30px;
        border: 1px solid #eaeaea;
    }
    
    .section-header {
        background-color: #f8f9fa;
        padding: 15px 20px;
        border-bottom: 1px solid #eaeaea;
    }
    
    .section-title {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .section-title i {
        margin-right: 10px;
        color: var(--primary-color) !important;
    }
    
    .section-body {
        padding: 20px;
        background: #fff;
    }
    
    /* 테이블 스타일 */
    .table-simple {
        width: 100%;
        border-collapse: collapse;
    }

	.table-simple ul {
		margin-bottom: 0px !important;
	}
    
    .table-simple th {
        background-color: var(--primary-color) !important;
        padding: 12px;
        border: 1px solid #eaeaea;
        color: #ffffff;
    }
	.underline {
		text-decoration: underline;
	}
    
    .table-simple td {
        padding: 12px;
        border: 1px solid #eaeaea;
    }
    
    /* 리스트 스타일 */
    ul {
        padding-left: 20px;
        margin-bottom: 1rem;
    }
    
    li {
        margin-bottom: 8px;
        line-height: 1.5;
		word-break: keep-all;
    }
    
    /* 알림 텍스트 */
    .txt-notice {
        color: #666;
        font-size: 14px;
    }
    
    .txt-orange {
        color:rgb(231, 114, 60);
    }
    
    /* 인덴트 및 여백 */
    .indent15 {
        padding-left: 15px;
    }
    
    .indent20 {
        padding-left: 20px;
    }
    
    /* 버튼 스타일 */
    .nav-btn {
        padding: 8px 16px;
        background: #f8f9fa;
        border: 1px solid #eaeaea;
        color: #333;
        margin-right: 8px;
        margin-bottom: 8px;
        cursor: pointer;
    }
    
    .btn-navigation {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
	
	    @media (max-width: 768px) {
        .section-title {
            font-size: 16px;
        }
        
        .section-body {
            padding: 15px;
        }
    }