:root {
    --blue-shibata: #24519B;
    --red-shibata: #CA2128;
    --soft-blue-gray: #939EAA
}

.table-head-colored thead {
    background-color: #787777;
    color: white;
}

.bg-blue {
    color: #fff;
    background-color: var(--blue-shibata);
    border-color: var(--blue-shibata);
}

.bg-blue:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bg-blue-gray {
    color: #fff;
    background-color: var(--soft-blue-gray);
    border-color: var(--soft-blue-gray);
}

.dt-icon-hover-column {
    display: flex;
    justify-content: center;
    position: relative;
}

.dt-action-hover-section {
    display: none;
    position: absolute;
    right: 0;
}

tr:hover .dt-action-hover-section {
    display: block;
}

@media (max-width: 768px) {
    .dt-icon-hover-column {
        flex-direction: column;
        align-items: center;
    }

    .dt-action-hover-section {
        position: static;
        display: none;
        margin-top: 10px;
    }
}

.cell-alert {
  display: flex;
  align-items: center;
}