.card
{
    margin-left: 1px;
    box-shadow: 10px 0px 15px 0px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease-in-out; 
}

.card:hover
{
    transform: scale(1.1); 
    box-shadow: 2px 2px 2px #000; /* Adiciona uma sombra */
    z-index: 2;
}
.card-icon
{
    display: flex;
    justify-content: center;
    padding: 10px;
}

.card-icon svg
{
    font-size: 50px !important;
    color: #858796;
}

.card-title
{
    font-weight: bold;
    text-align: center;
    color: #858796;
}

.card-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-action
{
    display: flex;
    justify-content: space-between;
}

.image-icon
{
    width: 15px;
    height: auto;
}


.table td
{
    font-size: 13px;
}

.d-none{
    display: none;
}