/* ================= COURSES PAGE ================= */

.principals-page{
    padding:60px 0;
}

.table-responsive{
    overflow-x:auto;
    margin-top:30px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    border-radius:8px;
    overflow:hidden;
}

table thead{
    background:#7a0019;
}

table th{
    color:#fff;
    padding:15px;
    font-size:16px;
    font-weight:600;
    text-align:left;
}

table td{
    padding:14px 15px;
    border-bottom:1px solid #e5e5e5;
    color:#444;
    line-height:1.6;
}

table tbody tr:nth-child(even){
    background:#f8f9fa;
}

table tbody tr:hover{
    background:#fff5f5;
    transition:0.3s;
}

table td:first-child,
table th:first-child{
    width:80px;
    text-align:center;
}

table td:nth-child(3),
table th:nth-child(3){
    text-align:center;
    width:150px;
}

table td:last-child,
table th:last-child{
    text-align:center;
    width:180px;
}

/* Details Link */

table td a{
    display:inline-block;
    padding:8px 16px;
    background:#7a0019;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

table td a:hover{
    background:#5a0012;
}

/* Mobile */

@media (max-width:768px){

    table th,
    table td{
        padding:10px;
        font-size:14px;
    }

    table td a{
        padding:6px 12px;
        font-size:13px;
    }
}