.table-container {
            margin-top: 40px;
            /*background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
            overflow: hidden;
        }

        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .table_class {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
 
        }

        .table_class th {
           /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/

		   background: var(--action);
            color: white;

            text-align: center;

            border: none;
            white-space: nowrap;
        }

        .table_class th:first-child {
            width: 15%;
            min-width: 80px;
        }

        .table_class th:not(:first-child) {
            width: 21.25%;
            min-width: 160px;
        }

        .table_class td {
            padding: 16px 12px;
            border-bottom: 1px solid #e0e0e0;
            vertical-align: top;
        }


.table_class tr:nth-child(2n+1) td{ background: #fdfdfd; }
.table_class tr:nth-child(2n) td{background: #f9f9f9;}

		.table_class tr td.class_title{text-align:center;font-size:0.95rem;color: var(--t_color3);font-weight:600;border-right:1px solid #ededed; /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
             background: var(--action);
			color: white;
            font-weight: 600;
            text-align: center;
            position: sticky;
            left: 0;
            z-index: 10;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);border-right:1px solid #ededed;
			     vertical-align: middle;}
        .table_class tbody tr:hover {
            background-color: #f8f9ff;
        }

		  .circle_ul li {

          /*  transition: all 0.2s ease;*/
        }

        .circle_ul li:hover {
          /*  color: #667eea;
            transform: translateX(5px);*/
        }



        /* 스크롤바 스타일링 */
        .table-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .table-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .table-wrapper::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 4px;
        }

        .table-wrapper::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        }

	

        /* 반응형 디자인 */
        @media (max-width: 768px) {
      
            
            .table_class {
                font-size:0.95rem;
                min-width: 700px;
            }
            
            .table_class th,
            .table_class td {
                padding: 12px 8px;
            }
            
            .circle_ul li {
                padding: 6px 0 6px 10px;
                font-size:0.95rem;
            }
        }

        @media (max-width: 480px) {
            .table_class {
                font-size: 11px;
                min-width: 600px;
            }
            
            .table_class th,
            .table_class td {
                padding: 10px 6px;
            }
        }

        /* 스크롤 힌트 */
        .scroll-hint {
		 
            text-align: center;
            color: #666;
            font-size:0.95rem;
            /* opacity: 0; */
            /* animation: fadeIn 2s ease-in-out 1s forwards; */
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width: 991px) {
            .scroll-hint {
                opacity: 1;
                animation: none;
            }


		.circle_ul li:before {
			top:12px;
		 }
        }