.configure-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-top: 20px;
}

.config-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.config-main {
    flex: 2;
    min-width: 300px;
}

.config-sidebar {
    flex: 1;
    min-width: 250px;
}

.settings-card {
    margin-bottom: 30px;

    p.api-notice {
        color: #374151;
        font-size: 12px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        background-color: #f5f5f5;
        width: 100%;
        max-width: 475px;

        &::before {
            content: '';
            width: 4px;
            height: 24px;
            background: #2563eb;
            border-radius: 2px;
            margin-right: 8px;
        }
    }
}

.settings-description {
    color: #666;
    margin-bottom: 20px;
}

.api-settings-form {
    max-width: 600px;

    .form-group {
        .security-api-label {
            color: #000;
        }

        .api-keys {
            width: 100%;
            padding: 12px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-family: monospace;
            font-size: 14px;
            line-height: 1.5;
            resize: vertical;
            transition: all 0.2s ease;
        }
    }

    .form-actions {
        .save-keys {
            background: #2563eb;
            color: white;
            border: none;
            padding: 7px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
        }
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .form-input {
    padding-right: 40px;
    flex-grow: 1;
}

.toggle-visibility {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-visibility:hover {
    color: #333;
}

.api-key-display {
    font-family: monospace;
    margin-top: 8px;
    padding: 6px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
}

.form-actions {
    margin-top: 24px;
}

.button {
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid transparent;
}

.button-primary {
    background-color: #2271b1;
    color: #fff;
}

.button-primary:hover {
    background-color: #135e96;
}

.connection-test {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;

    .test-connection-button {
        background: #008080;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
    }
}

.test-connection-button {
    background-color: #008080;
    color: white;
    border: none;
}

.test-connection-button:hover {
    background-color: #006666;
}

/* Setup Guide Styles */
.setup-guide {
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 30px;
    color: #434343;
}

.guide-steps {
    margin-top: 16px;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 14px;
}

.step-content {
    h4 {
        margin: 0 0 4px 0;
        font-size: 15px;
    }

    p {
        margin: 0;
        color: #6b7280;
        font-size: 13px;
    }
}

/* FAQ Styles */
.scan-faq-section {
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.scan-faq-list {
    margin-top: 16px;
}

.scan-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    color: #252525;

    &.active {
        .scan-faq-question {
            background-color: #252525;
            color: #ffffff;
        }
    }
}

.scan-faq-question {
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    font-size: 14px;

    &:hover {
        color: rgb(10, 10, 10);
        background-color: #ffffff;
    }
}

.scan-faq-toggle {
    font-size: 18px;
    line-height: 1;
    color: #6b7280;
}

.scan-faq-answer {
    padding: 16px 19px 24px;
    color: #434343;
    line-height: 25px;
    font-size: 13px;
    background: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .config-layout {
        flex-direction: column;
    }

    .config-main,
    .config-sidebar {
        flex: 1 1 100%;
        width: 100%;
    }

    .api-notice {
        width: 100% !important;
    }
}