/* 
 * SPARQL Ontop UI - Minimal nulllogicone.net styling
 */

/* Subtle background gradient */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background-attachment: fixed !important;
}

/* Small branding badge in corner */
body::before {
    content: "nulllogicone.net";
    position: fixed;
    bottom: 8px;
    right: 8px;
    background: rgba(102, 126, 234, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Remove excessive text shadows that cause white-on-white issues */
h1, h2, h3, h4, h5, h6, .header, .title {
    text-shadow: none !important;
}

