/* custom.css - Additional styles for News95 */

body {
    background-color: #008080;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,.03) 10px,
            rgba(0,0,0,.03) 20px
        );
    font-family: "MS Sans Serif", sans-serif;
}

.article-summary {
    padding: 8px;
    background-color: white;
    border: 2px inset #dfdfdf;
    margin-bottom: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.article-summary p {
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.article-summary p:last-child {
    margin-bottom: 0;
}

/* Custom scrollbar for Windows 95 feel */
.article-summary::-webkit-scrollbar {
    width: 16px;
}

.article-summary::-webkit-scrollbar-track {
    background: #dfdfdf;
    border: 1px solid #7f7f7f;
}

.article-summary::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border: 1px solid #dfdfdf;
    box-shadow: inset 1px 1px #dfdfdf, inset -1px -1px #7f7f7f;
}

/* Loading animation */
#loading img {
    width: 32px;
    height: 32px;
}

/* Footer styling */
footer {
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .window {
        margin: 16px !important;
    }
    
    .field-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .field-row button {
        width: 100%;
    }
}