@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    font-family: 'Figtree', sans-serif;
    box-sizing: border-box;
}

img {
    user-select: none;
    pointer-events: none;
}

input[type=text] {
    text-overflow: ellipsis;
}

/* Generic Styling for Tools Content */
.tool-access-content {
    padding: 1.5rem;
    outline: none;
    font-size: 0.95rem;
    line-height: 1.625;
    color: #1f2937;
}

.tool-access-content>* {
    white-space: normal;
    line-height: normal;
}

.tool-access-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.tool-access-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.tool-access-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.tool-access-content p {
    margin-bottom: 1.25rem;
}

.tool-access-content ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.25rem !important;
}

.tool-access-content ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.25rem !important;
}

.tool-access-content li {
    margin-bottom: 0.5rem;
}

.tool-access-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.25rem;
    font-style: italic;
    color: #4b5563;
    margin: 2rem 0;
    background: #f8fafc;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.tool-access-content code {
    background: #f1f5f9;
    color: #e11d48;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.85em;
}

.tool-access-content pre {
    background: #0f172a;
    color: #f8fafc;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.tool-access-content pre code {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 0.9em !important;
}

.tool-access-content a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}