/* NFO Table Styles */
.nfo-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background: white;
}

.nfo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    min-width: 600px;
}

.nfo-table th {
    background: #1e3a8a;
    color: white;
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
}

.nfo-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f4f8;
    vertical-align: middle;
}

.nfo-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.nfo-table tr:hover {
    background-color: #f0f7ff;
}

.nfo-table tr.new-scheme {
    background-color: #fff8e1;
}

.nfo-table tr.new-scheme:hover {
    background-color: #ffecb3;
}

.view-more-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #2563eb;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nfo-no-results {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nfo-no-results p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Scheme with Logo */
.scheme-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scheme-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    background: white;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.scheme-name {
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.new-scheme-badge {
    background: #ff5722;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nfo-table-container {
        margin: 1rem -10px;
        width: calc(100% + 20px);
        border-radius: 0;
    }
    
    .nfo-table th, 
    .nfo-table td {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .view-more-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .scheme-logo {
        width: 35px;
        height: 35px;
    }
    
    .new-scheme-badge {
        font-size: 0.7em;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .nfo-table {
        min-width: 100%;
    }
    
    .nfo-table th {
        font-size: 0.95rem;
        padding: 12px 10px;
    }
    
    .nfo-table td {
        padding: 10px;
    }
    
    .view-more-btn {
        padding: 7px 12px;
    }
    
    .scheme-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}