/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f7fa;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

a:-webkit-any-link {
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
}

ul {
    list-style: none;
}

input, button {
    font: inherit;
}

/* Override browser defaults that might interfere with navigation styling */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

/* Remove focus outlines that might interfere with design */
:focus {
    outline: none;
}

/* Ensure SVG elements inherit color properly */
svg {
    fill: currentColor;
}
