/* Custom styles for DocNet API */
input[type="text"], textarea {
    border: 1px solid #d1d5db;
    padding: 0.5rem 0.75rem;
}

input[type="text"]:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Code block styling */
pre {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
}