/*
Theme Name: Ada Health
Description: Custom theme for Ada Health website with Tailwind CSS
Version: 1.0
Author: Your Name
*/

/* Basic reset - let Tailwind handle the rest */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* WordPress specific classes for content alignment */
.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Screen reader text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.full-bleed {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.z-above-curve {
    position: relative !important;
    z-index: 10 !important;
}