/* guide.css - Guide Page Styles */

* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Code block styling */
.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/* Highlight animation */
@keyframes highlight {
    0% { background-color: #fef3c7; }
    100% { background-color: transparent; }
}

.highlight-row {
    animation: highlight 2s ease-in-out;
}
