/**
 * HSN Autocomplete Styles
 */

/* Info Box */
#hsn_info_box {
    margin-top: 8px;
    padding: 10px 12px;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    font-size: 14px;
    color: #1565c0;
    display: none;
}

.hsn-info-warning {
    color: #f57c00 !important;
}

.hsn-info-success {
    color: #388e3c !important;
}

.hsn-info-error {
    color: #d32f2f !important;
}

/* Suggestions Dropdown Container */
#hsn_suggestions_dropdown {
    position: relative !important;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    margin-bottom: 16px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
}

#hsn_suggestions_dropdown.show {
    display: block !important;
}

.hsn-suggestions-dropdown {
    padding: 0;
}

/* Individual Suggestion Item */
.hsn-suggestion-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background-color 0.2s ease;
    flex-wrap: wrap;
}

.hsn-suggestion-item:last-child {
    border-bottom: none;
}

.hsn-suggestion-item:hover {
    background-color: #f5f5f5;
}

/* HSN Code */
.hsn-code {
    font-weight: 700;
    font-size: 14px;
    color: #1976d2;
    min-width: 80px;
    font-family: 'Courier New', monospace;
}

/* HSN Label */
.hsn-label {
    font-weight: 600;
    font-size: 12px;
    color: #666;
    min-width: 100px;
    text-transform: uppercase;
}

/* HSN Description */
.hsn-desc {
    flex: 1;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

/* Different levels styling */
.hsn-chapter {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.hsn-heading {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.hsn-subheading {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
}

.hsn-tariff {
    background-color: #f3e5f5;
    border-left: 4px solid #9c27b0;
}

.hsn-guidance {
    background-color: #fff9c4;
    border-left: 4px solid #fbc02d;
    font-style: italic;
}

.hsn-info {
    background-color: #e0f7fa;
    border-left: 4px solid #00bcd4;
    justify-content: center;
}

/* ============================================
   SPACING ADJUSTMENTS
   ============================================ */

/* Space between info box and IFC Magic Fill button */
#hsn_info_box {
    margin-bottom: 10px;
}

/* Space between suggestions dropdown and button */
#hsn_suggestions_dropdown {
    margin-bottom: 10px;
}

/* Additional spacing for the fetch button */
#fetch_data_button {
    margin-top: 10px !important;
}


/* Responsive */
@media (max-width: 768px) {
    #hsn_suggestions_dropdown {
        max-width: 100%;
    }
    
    .hsn-suggestion-item {
        flex-direction: column;
        gap: 6px;
    }
    
    .hsn-code,
    .hsn-label {
        min-width: auto;
    }
}
