.shadow-row{
    border-radius: 4px;
    background-color: #fff;
    color: rgba(0,0,0,.87);
    box-shadow: 0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important;
    padding: 10px;
}

/* CSS for the tab links */
.nav-link {
    /* Initial text color */
    color: #333; /* Change this to your preferred color */
    /* Transition for smooth effect */
    transition: color 0.3s;
}

/* CSS for the tab links on hover */
.nav-link:hover {
    /* Text color on hover */
    color: #fff; /* Change this to the desired hover color */
}