* {
    font-family: sans-serif;
}

.container{
    width: 100vw;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background: #2C3156;
    overflow: hidden;
}

 img {
    margin: 40px 40px;
    width: 150px;
    
}

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

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

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
    background: #1b1a33;
    color: #ffffff;
    font-weight: bold;
}

.content-table tbody tr:hover {
    background: #1b1a333f;
    
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879; 
    background-color: #f3f3f3;
}

.content-table tbody tr.active-row:hover {
    background-color: #cacaca;
}