﻿.toolbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.toolbox-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.toolbox-separator {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 10px;
    height: auto;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .btn-icon:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.toolbox-bg {
    background: #f4f6f9; /* Gris muy claro tipo AdminLTE */
    border: 1px solid #dee2e6;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease;
}

.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 2.1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 2.1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    font-weight: bold;
    
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.truncate {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate2 {
    max-width: 700px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.dataTables_wrapper .dataTables_length {
    float: right;
    margin-top: 2px;
    margin-right: 5px;
}

div.dt-buttons {
    float: left;
    margin-top: 10px;
    margin-left: 5px;
}

td.details-control {
    background: url('../../img/details_open.png') no-repeat center center;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url('../../img/details_close.png') no-repeat center center;
}

.breadcrumb-item {
    text-transform: uppercase
}


/* Contenedor seguro para DataTables child row */
.dt-child-wrapper {
    padding: 10px 14px;
    background: #f9fafb;
    border-left: 4px solid #17a2b8;
}

    .dt-child-wrapper .lead {
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .dt-child-wrapper table {
        margin-bottom: 0;
    }
