.styled-table {
    border-collapse: collapse;
    margin: 25px auto 0 auto;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 80%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #0e8bff;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #0e8bff;
}

@media (max-width: 991px){
    .styled-table{
        min-width: 90%;
    }
}

@media (max-width: 768px){
    .styled-table{
        min-width: 95%;
    }
}

@media (max-width: 550px){
    .styled-table{
        min-width: 90%;
    }
}

