$color-primary: #008AD8;

.course-list-table-container {
    padding: 2px;
    margin: 10px;
}

.course-list-table thead{
    background-color: #444444;
    color: #ffffff;
}

.course-list-table tr td {
    border: 0px;
    border-bottom: 1px solid #4444444f;
}

table.course-list-table {
    border-radius: 2px;
    border: none;
    width: 100%;
}

table.course-list-table tr {
    line-height: 30px; 
}

.course-list-table-download-options {
    text-align: right;
    margin: 5px;
}

tr.course-list-table-data-row:hover{
    cursor:pointer;
    border-radius: 2px;
    transform: scaleX(1.01);
    transition: all 0.2s ease-in-out;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.edit-post-visual-editor table.course-list-table{
    border-radius: 2px;
    border: none;
    width: 100%;
}

.wisdm-ld-loading {
    width: 100%;
    min-height: 40px;
    animation: load 1.2s infinite 0s ease-in-out;
	animation-direction: alternate;
	text-shadow: 0 0 1px $color-primary;
    display:flex;
	justify-content: center;
	align-items: center;
    @keyframes load {
        0%{
            opacity: 0.08;
            filter: blur(5px);
            letter-spacing: 3px;
            }
        100%{
            //text 
            }
    }
}