@import url('Suspensas/styles.css');

table.dataTable th, table.dataTable td {
    text-align: center;
}
.btn-edit, .btn-delete {
    text-decoration: none;
    color: white;
    border-radius: 3px;
}
.btn-edit {
    background-color: #007bff;
}
.btn-delete {
    background-color: #dc3545;
}
.html, .body{
    overflow: scroll !important;
}
#main-page{
    overflow: scroll !important;
}
.btn-download {
    text-decoration: none;
    color: #007bff; /* Cor azul padrão, ajuste conforme seu design */
    transition: color 0.3s;
}

.btn-download:hover {
    color: #0056b3; /* Cor mais escura ao passar o mouse */
}

.btn-download i {
    margin-right: 5px; /* Espaço entre o ícone e o texto */
}
.select2-container .select2-selection--single {
    height: 2.3em !important; /* Match Bootstrap input height */
    padding: 6px 12px;
    width: 100%;
    border: 1px solid rgb(224, 224, 224) !important;
    border-radius: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
}
/* In /assets/admin/css/Portal-Cidadao/licitacao.css */
.descricao-limitada {
    line-clamp: 3 !important;
    height: 3em;
    font-size: 0.9rem;
    max-height: 80px;
    display: -webkit-box;           /* Necessário para habilitar line-clamp */
    -webkit-line-clamp: 3;         /* Limita a duas linhas */
    -webkit-box-orient: vertical;  /* Define orientação vertical */
    overflow: hidden;              /* Oculta o restante do texto */
    text-overflow: ellipsis;       /* Adiciona "..." no final */
    word-break: break-word;        /* Evita que palavras muito longas quebrem o layout */
    
}
.descricao-limitada:hover::after {
    content: attr(data-full-text);
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 10;
}