.m_table {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
}
.m_table caption {
    font-size: 20px;
    margin-bottom: 30px;
}
.m_table tr {
    border-bottom: 1px solid #eee;
}
.m_table tr:last-child {
    border: none;
}
.m_table tr:nth-child(odd) {
    background-color: #fff;
}
.m_table th,
.m_table td {
    padding: 11px !important;
    /*text-align: center; */
}
.m_table tr th {
    background-color: royalblue;
    color: #fff;
}
.m_table tr th:first-child {
    border-radius: 5px 0 0 0;
}
.m_table tr th:last-child {
    border-radius: 0 5px 0 0;
}
.m_table tr td:last-child {
    /*color: crimson;*/
    font-weight: 500;
}