/* Base Styles */

/* Dog selector modal needs higher z-index (opens from within other modals) */
#dogSelectorModal,
#dogSlotsModal,
#dogModal {
    z-index: 1100;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    padding-bottom: 100px;
}

/* Utility Classes */
.u-hidden { display: none !important; }
