:root {
    --color-white: #ffff;
    --color-grey: #7c7c7c;

    --background-grey: #efeeee;
    --background-modal: #ebeced94;

    --line-color-g: #93c021;
    --line-color-pink: #f40454;

    --bg-button-g: #a0d124;
    --bg-input-room: #f5f8fa;
    --bg-checkbox: #a7e35a;

    --bg-btn-filter: #47daae;
    --bg-btn-select: #12bbb1;
    --bg-btn-include: #86c2a1;
    --bg-btn-include-hover: #92dbb3;
    --bg-btn-export: #4bbf5a;
    --bg-btn-export-hover: #5ed76e;
    --bg-btn-admin: #139b50;
    --bg-btn-admin-hover: #29b167;
    --bg-btn-parameters: #084d27;
    --bg-btn-parameters-hover: #0f743c;
    --bg-btn-current: #12bbb1;
    --bg-btn-grey: #f9f9f9;
    --bg-btn-print: #8daf91;

    --bg-calendar: #eefffa;

    --color-shadow: rgb(82 63 105 / 15%);
}

html,
body,
.container__login {
    height: 100%;
}

body {
    background-color: var(--background-grey);
    grid-template-rows: 86px auto;
}

header {
    background-color: var(--color-white);
    padding: 0;
    position: sticky;
    width: 100%;
    z-index: 1;
}

nav.navbar {
    padding: 10px;
}

.logout__button {
    display: flex;
    background: none;
    border: none;
}

/* Begin - Naviations actions */
.container__questions {
    width: 100%;
}

.select {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
}

.select__item {
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Heebo", sans-serif;
    text-align: center;
    border-radius: 3px;
    background: #e3e3e3;
    transition: background 0.1s;
}

@media (min-width: 690px) {
    .select__item:hover {
        background: #009578cc;
        color: #ffffff;
    }
}

.hidden {
    display: none;
}

.select__item--selected {
    background: #009578;
    color: #ffffff;
}

/* End - Naviations actions */

/* Begin - Naviations actions */

.form__content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0.5rem 0;
}

.actions__internal {
    display: flex;
    gap: 5px;
}

.actions__internal a,
.button__admin {
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.5s ease;

    border: none;
    border-radius: 20px;

    height: 43px;

    display: flex;
    align-items: center;

    gap: 5px;
    padding: 0 12px;

    font-size: 14px;
    cursor: pointer;
}

.button__admin {
    background-color: var(--bg-btn-admin);
}

.button__admin:hover {
    color: var(--color-white);
    background-color: var(--bg-btn-admin-hover);
}

.button__include {
    background-color: var(--bg-btn-include);
}

.button__include:hover {
    background-color: var(--bg-btn-include-hover);
}

.button__parameters {
    background-color: var(--bg-btn-parameters);
}

.button__parameters:hover {
    background-color: var(--bg-btn-parameters-hover);
}

.button__export {
    background-color: var(--bg-btn-export);
}

.button__export:hover {
    background-color: var(--bg-btn-export-hover);
}

.search__container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search__name {
    font-size: 14px;
    padding: 5px 18px;
    border: none;
    background-color: #ffffffe8;
    height: 40px;
    border-radius: 20px;
}

.search__student {
    background-color: var(--color-white);

    border-radius: 20px;

    overflow: hidden;

    display: flex;

    height: 40px;
    width: 140px;

    padding: 0 0 0 15px;
}

.search__student input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.search__student input {
    background-color: transparent;
    color: var(--color-grey);

    border: none;
    outline: none;

    font-size: 14px;
    width: 80%;
}

.search__student button {
    background-color: var(--bg-btn-filter);
    color: var(--color-white);

    border: none;

    width: 25%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.search__data {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search__data input {
    background-color: transparent !important;
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
}

/* End - Naviations actions */

/* Begin - Modal agendar */

.modal-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90% !important;
}

.form-select:focus {
    border-color: #d6e7ff !important;
    box-shadow: 0 0 0 0.15rem #dddddd40 !important;
}

/* Begin - Modal agendar */

.modal {
    overflow-y: hidden !important;
}

.modal-body {
    padding: 1.5rem 2rem !important;
}

.button__container {
    padding: 25px 0 0 15px;
    display: flex;
    justify-content: center;
}

.container__time,
.container__location,
.container__discipline {
    display: flex;
    align-items: center;
    gap: 4%;
    margin-bottom: 15px;
}

.content__time,
.content__location {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* End - Modal agendar */

.button__submit {
    color: var(--color-white);
    background-color: var(--bg-btn-select);
    border-radius: 20px;
}

.button__submit:hover {
    color: var(--color-white);
    filter: saturate(1.2);
}

/* End - Modal agendar */

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

ul.ul-show {
    text-align: right;
}

ul.lista-botoes {
    display: inline-flex;
}

ul.lista-botoes li a {
    margin-right: 10px;
}

.dropdown-header {
    padding: 0;
}

.dropdown-menu {
    padding-right: 0;
}

/* Begin - Container */

.container {
    padding: 10px;
    max-width: 100%;
}

/* Begin - Container */

.btn {
    margin: 0;
}

.btn-cabecalho {
    margin: 0;
}

/* Begin - Container message */

.modal__success {
    display: flex;
    position: fixed;
    top: 86px;
    right: 0;
    z-index: 2;
    transition: all 2s ease-in-out;
    min-width: 300px;
}

.msg-success,
.msg-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 2px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}

.msg-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.msg-error {
    background-color: #e68892;
    color: #c22020;
    border: 1px solid #e68892;
}

/* End - Container message */

.form-group {
    margin-bottom: 25px;
    width: max(20%, 200px);
    margin-right: 20px;
}

/* .form-select {
    font-size: 19px;
} */

.form-group2 {
    margin-bottom: 25px;
    width: 30%;
    margin-top: 23px;
}

.form-control {
    font-size: 18px;
}

.btn-voltar {
    margin-left: 0;
    margin-bottom: 20px;
}

.form-inline {
    display: flex;
    width: 80%;
}

.table {
    margin-top: 20px;
    text-align: center;
    table-layout: fixed;
    border-collapse: collapse;
}

.table tbody {
    display: block;
    width: 100%;
    overflow: auto;
}

.table thead tr {
    display: block;
}

td.text-align-right {
    text-align: right;
}

.table th,
.table td {
    padding: 10px;
    text-align: left;
    width: 400px;
}

/* Begin - Incluir sala */

.include__room {
    height: calc(100% - 86px);
    justify-content: center;
    align-items: center;
}

.main__container {
    background-color: var(--color-white);
    padding: 15px 30px;
    border-radius: 10px;
}

.main__student {
    height: calc(100vh - 86px);
    /* Use vh as a fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100 - 86px);
    overflow: hidden;
}

.main__title {
    text-align: center;
}

.room__form section {
    display: flex;
    gap: 25px;
    padding: 10px 0 0;
    justify-content: center;
}

.form__group {
    margin-bottom: 10px;
}

.form__group label {
    margin-bottom: 6px;
    font-size: 15px;
}

.form__group input,
.form__group select {
    background-color: var(--bg-input-room);
    color: #000;

    outline: none;

    font-size: 15px;
    border: none;
}

.form__group input:focus {
    background-color: var(--bg-input-room) !important;
    box-shadow: 0 0 0 0.1rem rgb(13 110 253 / 15%) !important;
}

.form__group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--bg-input-room) inset;
}

.group__checkbox {
    display: flex;
    flex-direction: column;
}

.group__checkbox div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox__content {
    position: relative;
    padding-left: 30px;
}

.checkbox__content input {
    display: none;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 2px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox__content input:checked~.checkmark {
    background-color: var(--bg-checkbox);
}

.checkbox__content .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 40%;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox__content input:checked~.checkmark:after {
    display: block;
}

.form__hours {
    flex-direction: column;
    align-items: center;
    gap: 15px !important;
}

.hours__content {
    display: flex;
    width: 100%;
}



.aside__hours.color {
    border-right: 3px solid var(--line-color-pink);
}

.aside__hours input {
    display: none;
}

.aside__hours label {
    background-color: var(--bg-input-room);
    position: relative;
    width: 70px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.aside__hours label:hover {
    background-color: var(--bg-checkbox);
    color: #fff;
}

.aside__hours label i {
    position: absolute;
    top: -8px;
    left: -8px;
    color: #d6f8aa;
}

.hours__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.main__buttons {
    display: flex;
    justify-content: end;
    padding: 10px 20px;
    gap: 10px;
}

.main__buttons a,
.main__buttons button {
    background-color: transparent;
    color: #000;
    text-decoration: none;
    padding: 8px 15px;
    border: none;
    border-radius: 15px;
    transition: all 0.6s ease-in-out;
}

.main__buttons button {
    color: var(--color-white);
    background-color: var(--bg-checkbox);
}

.main__buttons a:hover {
    background-color: var(--bg-input-room);
}

.main__buttons button:hover {
    background-color: #89bf45;
}

/* End - Incluir sala */

@media (min-width: 770px) {
    #myForm .form__aside {
        width: 50%;
    }
}

/* Begin Login */

.login__content {
    margin: 40px 20px 20px 20px;
}

.login__input {
    position: relative;
    display: flex;
    align-items: center;
}

.login__input input {
    border: none;
    border-bottom: solid 1px var(--line-color-g);
    background: none;
    margin: 0 0.5em;
    padding: 0.5em;
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.login__input input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.login__input label {
    position: absolute;
    left: 16px;
    top: 13px;
    color: rgb(117, 117, 117);
    font-size: 14px;
    pointer-events: none;
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.login__input input:focus {
    box-shadow: 0 0 0 30px white inset;
    outline: 0;
    /* margin-top: 10px; */
    border: none;
    border-bottom: solid 1px var(--line-color-g);
    background: none;
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.login__input input:focus+label,
.login__input input:valid+label {
    background-color: #fff;
    color: #626060;
    top: -15px;
    left: 12px;
}

.login__input i {
    position: absolute;
    right: 0;
    margin-right: 10px;
    cursor: pointer;
    color: #63723db0;
}

.login__submit {
    background-color: var(--bg-button-g);
    transition: all 0.5s;
    border-radius: 40px;
}

.login__submit:hover {
    filter: saturate(1.5);
}

/* End Login */

/* Begin Questionário */

.submit__quest {
    background-color: var(--bg-button-g);
}

/* End Questionário */

/* Begin grade de horários */

.filters__selects {
    display: flex;
    align-items: center;
    gap: 10px;

    max-width: 100%;
}

.filters__selects button {
    display: none;
}

.table.dataTable thead th {
    border-bottom: none;
    font-weight: 400;
}

#tbody-table {
    height: 100%;
    margin: 0 auto;
    display: table;
}

.agenda__container {
    height: 100%;
}

#tbody-table::-webkit-scrollbar,
.agenda__container::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

#tbody-table::-webkit-scrollbar-track,
.agenda__container::-webkit-scrollbar-track {
    background: transparent;
    /* color of the tracking area */
}

#tbody-table::-webkit-scrollbar-thumb,
.agenda__container::-webkit-scrollbar-thumb {
    background-color: #d2d2d2;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid rgb(255, 255, 255);
    /* creates padding around scroll thumb */
}

.table.dataTable> :not(:first-child) {
    border-top: none;
}

.table.dataTable thead,
.table.dataTable tbody {
    font-size: min(16px, 3.2vw);
}

.table.dataTable tbody {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 8px;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 8px 8px !important;
}

.dataTables_empty {
    width: 100vw !important;
}

.tag__avaliable,
.tag__disabled {
    top: -6px;
}

.tag__avaliable {
    background-color: #2b2b2b14;
    color: #3e3838;
}

.table.dataTable.no-footer {
    border-bottom: 0px solid rgba(0, 0, 0, 0.3);
    height: 100%;
}

.table thead tr th:last-child::after,
.table thead tr th:last-child::before {
    display: none !important;
}

.dataTables_wrapper {
    height: 100%;
    overflow: hidden;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 10px !important;
    border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #2b2b2b !important;
    filter: invert(1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #dc3545 !important;
    filter: invert(1);
}

.dataTable>thead>tr>th[class*="sort"]:before {
    content: "˄" !important;
}

.dataTable>thead>tr>th[class*="sort"]:after {
    content: "˅" !important;
}

.btn__agendar {
    background-color: var(--bg-btn-select);
    border-radius: 20px;
    border: none;
    color: var(--color-white);
    padding: 5px 10px;
}

.btn__agendar.inactive {
    filter: opacity(0.3);
}

.btn__cancel,
.button__delete {
    text-decoration: none;
    background-color: var(--line-color-pink);
    border-radius: 20px;
    border: none;
    color: var(--color-white);
    padding: 5px 10px;
    transition: 1s all ease;
}

.btn__cancel,
.button__delete:hover {
    background-color: rgb(220, 53, 69);
}

.button__delete:disabled {
    background-color: #ef5085;
}

.button__print {
    background-color: var(--bg-btn-print);
    border-radius: 20px;
    border: none;
    color: var(--color-white);
    padding: 5px 10px;
}

/* End grade de horários */

.button__agenda {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
    font-family: "Courier New", Courier, monospace;
    padding: 15px 0;
    position: relative;
}

.button__agenda:hover {
    color: black;
}

.scroll-down {
    height: 30px;
    width: 30px;
    position: relative;
    border-radius: 50px;
    cursor: pointer;
    transition: rotate 0.5s ease-in-out;
}

.scroll-down::before,
.scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    border: 1px solid black;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1.5s ease-in-out infinite;
}

.scroll-down::after {
    top: 30%;
    animation-delay: 0.3s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 90%;
    }
}

#agenda {

    grid-template-rows: 57px auto;
    height: calc(var(--vh, 1vh) * 100 - 86px - 84px);
    transition: all 1s ease;
}

#agenda.hidden {
    display: none;
}

#calendario {
    display: flex;
    transform: translate3d(0, 0px, 0);
    opacity: 1;
    height: calc(var(--vh, 1vh) * 100 - 86px);
    transition: all 0.6s ease;
}

#calendario.hidden {
    display: none;
    transform: translate3d(0, -92px, 0);
    opacity: 0;
}

/* Begin calendar */

.fc .fc-daygrid-day-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 42px;
}

.fc-col-header {
    width: 100% !important;
}

.fc .fc-daygrid-day-number {
    height: 75%;
    width: 75%;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    font-weight: 300;
    z-index: 0 !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent !important;
}

.fc .fc-daygrid-day.fc-day-today a {
    background-color: var(--bg-btn-current) !important;
    color: var(--color-white) !important;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    height: 1px;
    min-height: 2px !important;
    display: flex;
    gap: 2px;
    position: absolute !important;
    bottom: 5px;
    left: 0;
    right: 0;
    justify-content: center;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.5em !important;
}

#calendar th {
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
}

.content__calendar {
    background-color: #fff;
    padding: 18px 13px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#calendar {
    background-color: var(--bg-calendar);
    border-radius: 10px;
    padding: 10px;
    width: 90%;
    height: inherit;
    cursor: default;
}

.fc-daygrid-day-bottom {
    display: none;
}

.event__element {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.fc .fc-scrollgrid,
.fc .fc-scrollgrid table {
    table-layout: auto !important;
}

.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid {
    border: none !important;
}

.fc-theme-standard td a,
.fc-theme-standard th a,
.fc-theme-standard .fc-scrollgrid a {
    color: #000 !important;
}

#calendar a {
    text-decoration: none !important;
}

.fc .fc-button-primary {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #000 !important;
}

.fc .fc-toolbar-title {
    text-transform: capitalize;
    font-size: 1.2em !important;
}

.agenda__container {
    margin: 10px;
    overflow: hidden scroll;
}

.agenda__empty {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.agenda__content {
    margin: 10px;
}

.day__content {
    display: grid;
    grid-template-columns: 102px auto 30px;
    align-items: center;
    margin-bottom: 7px;
}

.day__aside {
    display: flex;
    flex-direction: column;
    padding: 5px 15px;
    gap: 2px;
    font-size: 15px;
}

.day__aside.color {
    border-right: 1px solid var(--bg-btn-select);
    width: 102px;
}

.day__aside.color span {
    text-align: center;
}

.day__hour {
    font-size: 17px;
    font-weight: 600;
}

.btn__delete {
    color: var(--line-color-pink);
    background-color: var(--bg-btn-grey);
    padding: 5px 2px;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.6s;
}

.btn__delete:hover,
.btn__delete:focus {
    color: var(--color-white);
    background-color: var(--line-color-pink);
}

.drop__cancel {
    visibility: hidden;
    border: none;
    outline: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--color-white);
    color: var(--line-color-pink);
    box-shadow: 0px 0px 50px 0px var(--color-shadow);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 180px;
}

.drop__cancel:hover {
    color: var(--line-color-pink);
}

/* End calendar */

/* Begin - Modal Confirm */

.modal__confirm {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 10;
    background-color: #31313160;
}

.modal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    background-color: var(--color-white);
    padding: 30px 40px;
    max-width: 80vw;
    border-radius: 10px;
}

.modal__actions {
    display: flex;
    gap: 20px;
}

.modal__actions button {
    border-radius: 5px;
    border: none;
    padding: 10px;
    width: 130px;
    transition: all 0.9s ease;
}

.modal__actions #confirm {
    color: var(--color-white);
    background-color: var(--line-color-pink);
}

.modal__actions button:hover {
    filter: contrast(1.2);
}

/* End - Modal Confirm */

/* Begin - Modal Parameters */

.modal__parameters,
.modal__export,
.modal__modalidade {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;

    background-color: var(--background-modal);

    justify-content: center;
    align-items: center;
}

.modal__container {
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 15px;
    width: 35vw;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.modal__container form {
    padding: 0 30px 30px 30px;
}

.modal__header button {
    background: none;
    border: none;
}

.modal__button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.modal__button input {
    background-color: var(--bg-btn-select);
    color: var(--color-white);
    border-radius: 10px;
    border: none;
    width: 180px;
}

/* End - Modal Parameters */

@media (min-width: 690px) {

    main,
    .main__student {
        display: flex !important;
        gap: 10px;
        height: calc(100% - 86px);
    }

    .container__questions {
        width: 60%;
    }

    .select {
        grid-template-columns: repeat(5, 1fr);
    }

    #agenda,
    #calendario {
        overflow: hidden;
        opacity: 1 !important;
    }

    .modal__content {
        width: max(320px, 30vw);
    }

    #agenda.user {
        width: 65vw;
    }

    #agenda {
        overflow-y: auto;
        grid-template-rows: 57px auto;
        height: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    #calendario,
    #calendario.hidden {
        display: flex;
        width: 35vw;
        height: 100%;
        transform: translate3d(0, 0px, 0);
    }

    .filters__selects button {
        display: flex;
        gap: 5px;
        border-radius: 15px;
        background-color: #ffffff;
        border: none;
        padding: 5px 10px;
        font-size: 12px;
        transition: all 0.4s ease-in-out;
    }

    .filters__selects button:hover {
        background-color: var(--line-color-pink);
        color: var(--color-white);
    }

    .agenda__content {
        width: 28vw;
        margin: 0 16px;
    }

    #calendar {
        width: min(28vw, 460px);
        height: min(52%, 440px);
        padding: 12px 20px;
    }

    /* .dataTables_wrapper { */
    /* max-height: 70vh;  */
    /* } */

    table.dataTable tbody th,
    table.dataTable tbody td {
        padding: 8px 10px;
    }

    table.fc-col-header,
    .fc-scroller>div,
    .fc-scroller>div>table {
        width: 100% !important;
    }

    .fc .fc-scroller {
        overflow: hidden !important;
    }

    .fc .fc-daygrid-day-frame {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .fc .fc-daygrid-day-top {
        height: 35px;
        width: 35px;
    }

    .fc .fc-daygrid-day-number {
        height: 85%;
        width: 85%;
    }

    #tbody-table {
        max-height: 68vh;
        height: auto !important;
    }

    #form_agenda {
        padding-bottom: 10px;
    }

    .form__content {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .actions__internal button {
        font-size: 15px;
        gap: 5px;
    }

    .button__agenda {
        display: none;
    }

}

.oculto {
    display: none !important;
}

.visivel {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-top: 10px;
}

.label-span {
    font-weight: bold;
    margin-bottom: 4px;
    text-align: left;
}

.input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.descricao-textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: none;
}