.container-dialog{
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #0000005e;
    z-index: 120;
}

dialog{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: #53525274 1px solid;
    border-radius: 10px;
    width: auto;
}

.dialog-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EEF0F2;
    padding: 5px;
    border-radius: 10px 10px 0px 0px;
    border-bottom: #53525274 1px solid;
}

.dialog-header button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000000;
    color: black;
}

table{
    display: flex;
    width: 100%;
    height: 200px;
    padding: 5px;
    border-collapse: collapse; /* Opcional, evita espacio extra */
}

tbody{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    padding: 5px;
    overflow-y: auto;
    color: white;
}

tr {
    display: flex;
}

td {
    display: flex;
    flex: 1;  /* cada td ocupa la misma proporción */
    text-align: center;
    justify-content: center;
    align-items: center;
}

.table-status{
    align-items: center;
    justify-content: center;
}

.table-status span{
    padding: 5px;
    border-radius: 15px;
}

.pending{
    background-color: #53525274;
}

.approved{
    background-color: #1a7e50;
}
.rejected{
    background-color: #d73343;
}
.table-tags{
    align-items: center;
    justify-content: center;
}

.table-tags div{
    width: auto;
    padding: 5px;
    border-radius: 10px;
    background-color: #1a73e8;
}

.table-score span{
    padding: 6px 8px;
    border-radius: 100%;
}

.score-pos{
    background-color: #1a7e50;
}

.score-neg{
    background-color:  #d73343 ;
}

.score-zero{
    background-color: #53525274;
}

.table-btns{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.table-btns div{
    padding: 10px;
    border-radius: 10px ;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-btn-up{
    background-color: #1a7e4fa1 ;
    border: #1a7e50 1.5px solid;
    color: #1a7e50;
}

.table-btn-down{
    background-color: #fcc20476;
    border: #fcc404 1.5px solid;
    color: #fcc404 ;
}

.dialog-body{
    display: flex;
    flex-direction: column;
    font-size: medium;
    padding: 5px 20px;
    border-top: 1px solid #53525274;
    background-color: #EEF0F2;
}

.dialog-body ul{
    padding: 0px 25px;
}

.dialog-new-labels{
    padding: 5px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #EEF0F2;
    gap: 20px;
    border-radius: 0px 0px 10px 10px;
}

.dialog-new-labels input{
    background-color: #ffffff;
    border-radius: 10px;
}

.dialog-new-labels button{
    background-color: #1a73e8;
    color: white;
    border-radius: 10px;
}

@media (max-width: 768px) {

    dialog{
        width: 90%;
    }

    .dialog-new-labels{
        flex-direction: column;
        gap: 10px;
    }
    input{
        width: 100%;
    }

    .dialog-new-labels button{
        width: 100%;
    }
}