/* Custom Styles for Static Directory Site Generator */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

code {
    font-family: 'Courier New', Courier, monospace;
}

/* Ensure textareas are readable */
textarea {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.5;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* File upload styling */
input[type="file"] {
    cursor: pointer;
}

/* Table responsive */
@media (max-width: 768px) {
    .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
    }
}

