/* RESET - Minimal and non-conflicting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Simple Navbar - Won't conflict */
.layout-navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.layout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.layout-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.layout-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #2c3e50;
}

    .layout-brand i {
        color: #3498db;
        margin-right: 8px;
    }

.layout-nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

    .layout-nav-links a {
        text-decoration: none;
        color: #555;
        transition: color 0.3s;
    }

        .layout-nav-links a:hover {
            color: #3498db;
        }

/* Simple Footer */
.layout-footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Loading Spinner - Minimal */
.layout-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .layout-nav {
        flex-direction: column;
    }

    .layout-nav-links {
        gap: 1rem;
    }
}
