/**
 * FINCOGNITO SSIC Code Search Styles
 * Version: 1.0.0
 */

.fincognito-scs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header */
.fincognito-scs-header {
    text-align: center;
    margin-bottom: 40px;
}

.fincognito-scs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #11181C;
    margin-bottom: 16px;
    line-height: 1.2;
}

.fincognito-scs-description {
    font-size: 1.125rem;
    color: #687076;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search */
.fincognito-scs-search {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.fincognito-scs-input-group {
    margin-bottom: 0;
}

.fincognito-scs-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #11181C;
    margin-bottom: 12px;
}

.fincognito-scs-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fincognito-scs-input:focus {
    outline: none;
    border-color: #0a7ea4;
    box-shadow: 0 0 0 3px rgba(10, 126, 164, 0.1);
}

/* Loading */
.fincognito-scs-loading {
    text-align: center;
    padding: 60px 20px;
}

.fincognito-scs-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E5E7EB;
    border-top-color: #0a7ea4;
    border-radius: 50%;
    animation: fincognito-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes fincognito-spin {
    to { transform: rotate(360deg); }
}

.fincognito-scs-loading p {
    font-size: 1rem;
    color: #687076;
}

/* Results */
.fincognito-scs-results {
    margin-bottom: 48px;
}

.fincognito-scs-results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #11181C;
    margin-bottom: 24px;
    text-align: center;
}

.fincognito-scs-results-list {
    display: grid;
    gap: 16px;
}

.fincognito-scs-result-item {
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.fincognito-scs-result-item:hover {
    border-color: #0a7ea4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fincognito-scs-result-code {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a7ea4;
    margin-bottom: 12px;
}

.fincognito-scs-result-description {
    font-size: 1rem;
    color: #11181C;
    margin-bottom: 12px;
    line-height: 1.6;
}

.fincognito-scs-result-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(10, 126, 164, 0.1);
    color: #0a7ea4;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Info Section */
/* Deleted */

/* FAQ */
.fincognito-scs-faq {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fincognito-scs-faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #11181C;
    margin-bottom: 32px;
    text-align: center;
}

.fincognito-scs-faq-item {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.fincognito-scs-faq-item:last-child {
    margin-bottom: 0;
}

.fincognito-scs-faq-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #11181C;
    margin-bottom: 12px;
}

.fincognito-scs-faq-item p {
    font-size: 1rem;
    color: #687076;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fincognito-scs-title {
        font-size: 2rem;
    }
    
    .fincognito-scs-description {
        font-size: 1rem;
    }
    
    .fincognito-scs-search {
        padding: 24px;
    }
    
    .fincognito-scs-info {
        padding: 32px 24px;
    }
    
    .fincognito-scs-info-steps {
        grid-template-columns: 1fr;
    }
    
    .fincognito-scs-faq {
        padding: 32px 24px;
    }
}
