:root {
    --blue-color: #4074e4;
    --gray-color: #929292;
    --font-color: #000;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.w6 {
    width: 6%;
}

.w10 {
    width: 10% !important;
}

.w20 {
    width: 20%;
}

.w30 {
    width: 30%;
}

.w40 {
    width: 40%;
}

.w50 {
    width: 50%;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90% !important;
}

.w100 {
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Melhorar a organiza??o do media query */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    min-height: 100vh;
    font-family: Inter, Poppins, sans-serif !important;
    background-color: #f8f9fa;
}

.my-button {
    color: var(--fg);
    border: none;
    display: flex;
    padding: 15px 0px;
    min-width: 200px;
    font-weight: bold;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    background-color: var(--bg);
}

.my-text-label {
    display: block;
    font-weight: bold;
    font-size: 1.25em;
    color: var(--bg);
}

/* Modal de Deslogar */
button.close:focus {
    outline: none;
    box-shadow: none;
}

#content {
    margin-left: 208px;
    transition: margin-left 0.3s ease;
    width: calc(100% - 208px);
}

.sidebar:not(.open) + #content {
    margin-left: 110px;
    width: calc(100% - 64px);
}

/* Ajustes para telas pequenas */
@@media (max-width: 767px) {
    #content {
        margin-left: 64px;
        width: calc(100% - 64px);
        transition: margin-left 0.5s ease;
    }

    .sidebar.open + #content {
        margin-left: 208px;
        transition: margin-left 0.3s ease;
        width: calc(100% - 208px);
    }
}

#sairModal .modal-dialog {
    width: 60%;
    height: 60%;
    margin: 30px auto;
}

.container-main {
    width: 100%;
}
