/* ========================================
   ELEMENTS - BASE HTML ELEMENT STYLES
   Styles for bare HTML elements (no classes)
   ======================================== */

/* Base Typography */
body {
    color: var(--apidae-dark-grey);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding-bottom: 20px;
}

/* Pure HTML elements only in this layer */

/* Base navbar elements moved to components layer */

/* Global Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dashboardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments moved to components layer */