/* /assets/css/main.css */

body {
    background-color: #0a0a0a;
    color: #E5E5E5;
    font-family: 'Fira Code', monospace;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Custom scrollbar for content areas */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #111;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #39FF14;
}

/* Blinking Cursor Animation */
.blinking-cursor {
    display: inline-block;
    width: 10px;
    height: 1.2rem;
    background-color: #39FF14;
    animation: blink 1s step-end infinite;
    margin-left: 8px;
}

@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #39FF14; }
}

/* Styling for content generated from a potential Markdown parser */
.prose-s-terminal h1, .prose-s-terminal h2, .prose-s-terminal h3, .prose-s-terminal h4 {
    color: #E5E5E5;
    border-bottom: 1px solid #333333;
    padding-bottom: 0.5rem;
}
.prose-s-terminal p, .prose-s-terminal li {
    color: #a0a0a0;
}
.prose-s-terminal a {
    color: #39FF14;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.prose-s-terminal a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}
.prose-s-terminal code {
    background-color: #1f1f1f;
    color: #39FF14;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}
.prose-s-terminal pre {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
}
.prose-s-terminal pre code {
    background-color: transparent;
    padding: 0;
    color: #E5E5E5;
}
.prose-s-terminal blockquote {
    border-left: 3px solid #39FF14;
    padding-left: 1.5rem;
    color: #a0a0a0;
    margin-left: 0;
}
.prose-s-terminal img {
    border-radius: 8px;
    border: 1px solid #333333;
}