.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-informative {
    visibility: hidden;
    width: 320px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 2000;
    margin-bottom: 5px;
    margin-top: 5px;
}

.tooltip-informative p {
    margin-bottom: 0;
}

.tooltip-informative.top {
    bottom: 100%;
    left: 50%;
    margin-left: -160px;
}

.tooltip-informative.bottom {
    top: 100%;
    left: 50%;
    margin-left: -160px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip-informative.right {
    top: -5px;
    left: 130%;
}

.tooltip-informative.left {
    top: -5px;
    right: 130%;
}

.tooltip-container:hover .tooltip-informative {
    /*display: block;*/
    visibility: visible;
}

.input-container {
    position: relative;
}

.tooltip-icon {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    margin-inline: 5px;
    top: 3px;
}

.tooltip-login {
    right: 28px;
    top: 0;
}

.tooltip-pesquisar {
    justify-content: right;
}

.summernote-loader {
    height: 300px;
    width: 100%;
    background-color: #F9F9F9;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tooltip-log-table {
    border: none;
}

.tooltip-table-font th {
    color: #31B0CD;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
}

.remove-border th {
    border: none;
}

.remove-border-td td {
    border: none;
    background-color: #ffffff;
}

.tooltip-pagination {
    justify-content: flex-start !important;
    float: left;
}

