* {
    margin: 0;
    border: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: var(--foreground);
    overflow-x: hidden;
    background-color: var(--background);
}

div#root {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--background);
}

/* Portal para o react-datepicker - garante que o calendário apareça acima dos modais */
#root-portal {
    position: relative;
    z-index: 9999;
}

/* Garante que o calendário do react-datepicker apareça acima dos modais */
#root-portal .react-datepicker-popper {
    z-index: 9999 !important;
}

#root-portal .react-datepicker {
    z-index: 9999 !important;
}