﻿body {
}

/*-------- EmergencyNurseProcedureComponent--------*/
/*...Row mouse hover: shows icons and colored row..*/
.row-hover {
    padding: 8px 0;
    transition: background-color 0.2s ease;
}

    .row-hover:hover {
        background-color: var(--white-color);
    }

    .row-hover .action-icons {
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .row-hover:hover .action-icons {
        opacity: 1;
    }
.costumize-tabs.background-color-lightgray {
    /*border: 1px solid #ddd;*/
    border-radius: 15px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    margin: 6px 6px;
    padding: 10px 0;
    align-items: center;
}

    .costumize-tabs > button {
        display: flex;
        flex-direction: column;
    }

    .costumize-tabs.background-color-lightgray > .nav-link.active {
        background-color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
    }
    .costumize-tabs > .nav-link.active {
        background-color: #e0e0e0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
    }