/*
Theme Name: EddyTheDog
Description: Core App Theme for the EddyTheDog Plugin.
Version: 1.0
Author: Damian
*/

/* Base Resets */
:root {
    --etd-font-family: 'Inter', sans-serif;
    --etd-bg-color: #121212;
    --etd-text-color: #ffffff;
    --etd-primary-color: #ff3366;
    --etd-secondary-color: #2a2a2a;
    --etd-accent-color: #00ffcc;
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--etd-font-family);
    /* background controlled by active plugin theme via data-theme attribute */
    -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* App Container */
#etd-app-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Base Utility Classes */
.etd-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}