﻿.meus-relatos-container {
    width: 100%;
    height: 0;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    transition: 0.5s;
}

.meus-relatos-inner-container {
    height: 100%;
    background-color: white;
}

.meus-relatos-header {
    width: 100%;
    height: 60px;
}

.meus-relatos-header-titulo {
    width: 100%;
    height: 100%;
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto';
    font-size: 26px;
}

.meus-relatos-header-close {
    height: 60px;
    right: 33px;
    display: flex;
    position: fixed;
    align-items: center;
    font-size: 22px;
}

#meus-relatos-header-close{
    cursor: pointer;
}

    #meus-relatos-header-close:hover {
        font-size: 23px;
    }


.meus-relatos-conteudo {
    width: 100%;
    height: calc(100% - 60px);
    padding: 20px;
}

.meus-relatos-table-container {
    height: 100%;
    border: 1px solid #EFEFEF;
    overflow: auto;
}

.meus-relatos-table {
    width: 100%;
}

.meus-relatos-table-tr {
    height: 40px;
    font-family: 'Roboto';
    font-size: 14px;
    border: 1px solid #EFEFEF;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.meus-relatos-table-th {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    color: #878784;
    padding: 10px
}

.meus-relatos-table-th-center {
    text-align:center
}

#info-acoes-meus-relatos{
    position: relative;
}

#container-info-tip-acoes {
    position: absolute;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 8px;
    top: 16px;
    right: 0;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 4px 4px 5px #00000050;
}

    #container-info-tip-acoes span{
        display: flex;
        gap: 8px;
    }

        #container-info-tip-acoes span p {
            font-family: 'Roboto';
            font-weight: 400;
            line-height: 1.5;
            margin: 0;
        }

    .meus-relatos-table-tbody {
        font-family: 'Roboto';
    }

.meus-relatos-table-td {
    padding: 10px;
}

.meus-relatos-table-td-center {
    text-align: center;
}

.meus-relatos-table-td-i{
    cursor: pointer;
}

    .meus-relatos-table-td-i:hover {
        font-size: 18px;
    }

.meus-relatos-table-tr-tbody {
    background-color: white;
}

    .meus-relatos-table-tr-tbody:hover {
        background-color: #ececec;
    }

.meus-relatos-acoes {
    display: flex;
    gap: 8px;
}

.meus-relatos-table-tr > th:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 3;
    top: 0;
    background: #FFF;
}
.meus-relatos-table-tr-tbody > td:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 3;
    top: 0;
    background: #FFF;
}