
        .snv-container {
            width: 1310px;
            margin: 0 auto;
            padding: 5px 20px;
        }
        
        .page-title {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            margin: 0 0 20px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .page-title i {
            color: #66b3ff;
            font-size: 30px;
        }
        
        .data-type-section {
            background: white;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(255,255,255,0.8);
            width: 1204.5px;
        }
        
        .section-header {
            font-size: 20px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-header i {
            color: #66b3ff;
            font-size: 22px;
        }
        
        .data-type-tabs {
            display: flex;
            gap: 0;
            margin-bottom: 20px;
            width: 100%;
        }
        
        .tab-button {
            flex: 1;
            padding: 12px 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border: 2px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 16px;
            font-weight: 500;
            color: #64748b;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .tab-button:first-child {
            border-radius: 12px 0 0 12px;
        }
        
        .tab-button:last-child {
            border-radius: 0 12px 12px 0;
        }
        
        .tab-button:not(:first-child) {
            border-left: none;
        }
        
        .tab-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }
        
        .tab-button:hover::before {
            left: 100%;
        }
        
        .tab-button.active {
            background: linear-gradient(135deg, #66b3ff 0%, #4da6ff 100%);
            color: white;
            border-color: #66b3ff;
            box-shadow: 0 8px 25px rgba(102, 179, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .tab-button:hover:not(.active) {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .filter-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .filter-label {
            font-weight: 600;
            color: #374151;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .filter-select {
            padding: 8px 12px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 16px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .filter-select:focus {
            outline: none;
            border-color: #66b3ff;
            box-shadow: 0 0 0 4px rgba(102, 179, 255, 0.1);
            transform: translateY(-1px);
        }
        
        .visualization-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(255,255,255,0.8);
            width: 1204.5px;
            margin-bottom: 30px;
        }
        
        .viz-header {
            margin-bottom: 30px;
        }
        
        .viz-title {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #66b3ff, #4da6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .viz-subtitle {
            font-size: 16px;
            color: #64748b;
            font-weight: 400;
            margin-bottom: 15px;
        }
        
        .additional-filter {
            margin-bottom: 20px;
        }
        
        .additional-filter .filter-group {
            max-width: 200px;
        }
        
        .chart {
            width: 100%;
            height: 500px;
        }
        
        .view-toggle-buttons {
            display: flex;
            gap: 0;
            margin-top: 15px;
            
            margin-bottom: 20px;
        }
        
        .view-toggle-btn {
            padding: 8px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border: 2px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
        }
        
        .view-toggle-btn:first-child {
            border-radius: 8px 0 0 8px;
        }
        
        .view-toggle-btn:last-child {
            border-radius: 0 8px 8px 0;
            border-left: none;
        }
        
        .view-toggle-btn.active {
            background: linear-gradient(135deg, #66b3ff 0%, #4da6ff 100%);
            color: white;
            border-color: #66b3ff;
        }
        
        .view-toggle-btn:hover:not(.active) {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
        }
        .table-container {
            max-height: 550px;
            overflow: auto;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        
        .data-table th {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 12px 8px;
            text-align: center;
            font-weight: 600;
            color: #374151;
            border-bottom: 2px solid #66b3ff;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .data-table td {
            padding: 10px 8px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
            color: #4b5563;
        }
        
        .data-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        
        .data-table tr:hover {
            background-color: #f0f4ff;
        }
        
        .data-table th:first-child,
        .data-table td:first-child {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            font-weight: 600;
            position: sticky;
            left: 0;
            z-index: 5;
        }
        
        .data-table th:first-child {
            z-index: 15;
        }
        
        .bar-chart-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
        }
        
        .bar-chart-controls {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .control-row {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .control-row .filter-group {
            flex: 1;
            max-width: 300px;
        }
        
        .bar-chart-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            text-align: left;
        }
        
        /* Responsive Design */
        @media (max-width: 1400px) {
            .snv-container {
                width: 95%;
                max-width: 1310px;
            }
        }
        
        @media (max-width: 768px) {
            .filter-section {
                grid-template-columns: 1fr;
            }
            
            .control-row {
                flex-direction: column;
                align-items: stretch;
            }
        }
.xmselect_left_cluster{
width:200px;
float:left;
font-size:20px;
margin-bottom:10px;
}
.xmselect_right{
width:300px;
float:right;
margin-right:10px;
font-size:20px;
margin-bottom:10px;
}
.xmselect_left{
width:200px;
float:left;
font-size:20px;
margin-bottom:10px;
}
.table_title{margin-top:20px;margin-bottom:0px;font-size:16px;font-weight:550;font-family: 'Roboto', sans-serif !important;} 
.main-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
table.dataTable tbody tr:nth-child(odd) {
   background-color: #ffffff;
}
table.dataTable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
.dataTables_filter {
    float: left !important; /* ¿¿×ó¶ÔÆë */
    text-align: left !important;
    margin-bottom: 5px;
}
.dataTables_filter input {
    height: 35px !important; /* ÉèÖÃ¸ß¶È */
    font-size: 14px;
}
.dataTables_paginate ul, 
        .dataTables_paginate ol,
        .dataTables_paginate .pagination {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            padding: 0 !important;
            margin: 0 !important;
            list-style: none !important;
        }
        
        .dataTables_paginate li {
            display: inline-block !important;
            margin: 0 2px !important;
        }
.dataTables_info {
		    display: none;
		}
		
        