/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    min-width: 1280px;
    overflow-x: auto;
}

/* Remove default button styles */
button {
    font-family: inherit;
    font-size: inherit;
}

/* Remove default link styles for icon-only links */
a {
    color: inherit;
}