/* Generated by CSSBuilder at 2025-08-10 00:18:08 */
/* CSS Builder for yutai-navi.com */

/* ===== NAVIGATION_LINKS ===== */
.navigation-links {
                    display: flex;
                    gap: 16px;
                    justify-content: center;
                    margin: 24px 0;
                    flex-wrap: wrap;
                }
                
                .nav-link {
                    display: inline-flex;
                    align-items: center;
                    padding: 8px 16px;
                    background: #f8f9fa;
                    border: 1px solid #e9ecef;
                    border-radius: 8px;
                    text-decoration: none;
                    color: #495057;
                    font-size: 14px;
                    transition: all 0.2s ease;
                }
                
                .nav-link:hover {
                    background: #e9ecef;
                    color: #212529;
                    transform: translateY(-1px);
                }

/* ===== SEARCH_RESULTS ===== */
.search-results {
                    max-width: 1200px;
                    margin: 0 auto 24px;
                    background: rgba(255,255,255,0.95);
                    border-radius: 20px;
                    box-shadow: 0 4px 20px rgba(1,120,255,0.1);
                    padding: 20px;
                }
                .search-results-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 16px;
                    border-bottom: 1px solid #f0f0f0;
                    padding-bottom: 12px;
                }
                .search-results-header h2,
                .search-results-header h3 {
                    margin: 0;
                    color: #017aff;
                    font-size: 1.2rem;
                    font-weight: 700;
                }
                .clear-search-btn {
                    background: #f8f9fa;
                    border: 1px solid #e9ecef;
                    border-radius: 12px;
                    padding: 6px 12px;
                    font-size: 0.9rem;
                    color: #666;
                    cursor: pointer;
                    transition: all 0.2s;
                }
                .clear-search-btn:hover {
                    background: #e9ecef;
                    color: #333;
                }
                .search-results-content {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 16px;
                }
                .search-result-item {
                    background: #fff;
                    border: 1px solid #f0f0f0;
                    border-radius: 16px;
                    padding: 16px;
                    transition: all 0.2s ease;
                    cursor: pointer;
                }
                .search-result-item:hover {
                    border-color: #017aff;
                    box-shadow: 0 4px 12px rgba(1,120,255,0.1);
                    transform: translateY(-2px);
                }
                .search-result-title {
                    font-size: 1.1rem;
                    font-weight: 700;
                    color: #017aff;
                    margin: 0 0 8px 0;
                    text-decoration: none;
                }
                .search-result-code {
                    display: inline-block;
                    background: #e3f2fd;
                    color: #1976d2;
                    padding: 2px 8px;
                    border-radius: 8px;
                    font-size: 0.85rem;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .search-result-summary {
                    color: #666;
                    font-size: 0.95rem;
                    line-height: 1.4;
                    margin-bottom: 8px;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }
                .search-result-highlight {
                    display: inline-block;
                    background: #fff3e0;
                    color: #ef6c00;
                    padding: 2px 6px;
                    border-radius: 6px;
                    font-size: 0.8rem;
                    font-weight: 600;
                    margin-top: 4px;
                }
                .search-loading {
                    text-align: center;
                    color: #017aff;
                    font-size: 1.1rem;
                    padding: 20px;
                }
                .search-error {
                    text-align: center;
                    color: #d32f2f;
                    font-size: 1rem;
                    padding: 20px;
                    background: #ffebee;
                    border-radius: 12px;
                }

/* ===== PAGINATION ===== */
.pagination-nav {
                    margin: 32px 0;
                    padding: 20px 16px;
                    background: #f8f9fa;
                    border-radius: 12px;
                    border: 1px solid #e9ecef;
                }
                
                .pagination-info {
                    text-align: center;
                    color: #6c757d;
                    font-size: 14px;
                    margin-bottom: 16px;
                }
                
                .pagination-controls {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    flex-wrap: wrap;
                }
                
                .pagination-btn {
                    display: inline-flex;
                    align-items: center;
                    padding: 8px 12px;
                    border: 1px solid #dee2e6;
                    border-radius: 6px;
                    text-decoration: none;
                    color: #495057;
                    background: white;
                    font-size: 14px;
                    transition: all 0.2s ease;
                    white-space: nowrap;
                }
                
                .pagination-btn:hover:not(.disabled) {
                    background: #e9ecef;
                    color: #212529;
                }
                
                .pagination-btn.disabled {
                    color: #adb5bd;
                    cursor: not-allowed;
                    background: #f8f9fa;
                }
                
                .pagination-numbers {
                    display: flex;
                    gap: 4px;
                    align-items: center;
                    margin: 0 12px;
                }
                
                .pagination-number {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 36px;
                    height: 36px;
                    border: 1px solid #dee2e6;
                    border-radius: 6px;
                    text-decoration: none;
                    color: #495057;
                    background: white;
                    font-size: 14px;
                    transition: all 0.2s ease;
                }
                
                .pagination-number:hover:not(.current) {
                    background: #e9ecef;
                    color: #212529;
                }
                
                .pagination-number.current {
                    background: #0d6efd;
                    color: white;
                    border-color: #0d6efd;
                    font-weight: 600;
                }
                
                .pagination-ellipsis {
                    padding: 8px 4px;
                    color: #6c757d;
                    font-size: 14px;
                }

/* ===== COMPANY_TABLE ===== */
.company-list-container {
                    margin: 32px 0;
                    overflow-x: auto;
                    border-radius: 12px;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                }
                
                .company-list-table {
                    width: 100%;
                    border-collapse: collapse;
                    background: white;
                    font-size: 14px;
                }
                
                .company-list-table thead {
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
                }
                
                .company-list-table th {
                    padding: 16px 12px;
                    text-align: left;
                    font-weight: 600;
                    border-bottom: 2px solid #e9ecef;
                    position: sticky;
                    top: 0;
                    z-index: 10;
                }
                
                .company-list-table th.col-code {
                    width: 120px;
                    text-align: center;
                }
                
                .company-list-table th.col-company {
                    width: 200px;
                    min-width: 150px;
                }
                
                .company-list-table th.col-description {
                    min-width: 300px;
                }

                .company-list-table th.col-description-panel {
                    min-width: 300px;
                }

                .company-row {
                    transition: background-color 0.2s ease;
                }
                
                .company-row:nth-child(even) {
                    background: #f8f9fa;
                }
                
                .company-row:hover {
                    background: #e7f3ff;
                }
                
                .company-list-table td {
                    padding: 12px;
                    border-bottom: 1px solid #e9ecef;
                    vertical-align: top;
                }
                
                .col-code {
                    text-align: center;
                    font-weight: 600;
                }
                
                .code-link, .company-link {
                    color: #0d6efd;
                    text-decoration: none;
                    font-weight: 600;
                    transition: color 0.2s ease;
                }
                
                .code-link:hover, .company-link:hover {
                    color: #0a58ca;
                    text-decoration: underline;
                }
                
                .col-description {
                    color: #0d6efd;
                    line-height: 1.5;
                }

                .col-description-panel {
                    color: #ffffff;
                    line-height: 1.5;
                }

/* ===== RESPONSIVE_TABLE ===== */
@media (max-width: 900px) {
                    .pagination-controls {
                        flex-direction: column;
                        gap: 16px;
                    }
                    
                    .pagination-numbers {
                        margin: 0;
                    }
                    
                    .navigation-links {
                        gap: 8px;
                    }
                    
                    .nav-link {
                        font-size: 13px;
                        padding: 6px 12px;
                    }
                }
                
                @media (max-width: 768px) {
                    .company-list-table {
                        font-size: 13px;
                    }
                    
                    .company-list-table th,
                    .company-list-table td {
                        padding: 8px 6px;
                    }
                    
                    .company-list-table th.col-code {
                        width: 80px;
                    }
                    
                    .company-list-table th.col-company {
                        width: 140px;
                        min-width: 120px;
                    }
                    
                    .pagination-numbers {
                        gap: 2px;
                    }
                    
                    .pagination-number {
                        width: 32px;
                        height: 32px;
                        font-size: 13px;
                    }
                }
                
                @media (max-width: 600px) {
                    .company-list-container {
                        margin: 16px -8px;
                    }
                    
                    .navigation-links {
                        margin: 16px -8px;
                        padding: 0 8px;
                    }
                    
                    .pagination-nav {
                        margin: 16px -8px;
                        border-radius: 0;
                        border-left: none;
                        border-right: none;
                    }
                    
                    .col-description {
                        font-size: 12px;
                    }
                }

