@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body{
    font-family: 'Poppins', sans-serif;
}

.container_x{
padding-left: 60px;
padding-right: 60px;
margin-left: auto;
margin-right: auto;
}

#header{
    box-shadow: 0px 4px 7px 0px rgb(106 90 205 / 26%);
}
#header h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 30px 0;
    color:#fff;
    background-color: #696088;
    padding: 10px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    box-shadow: 0 0 5px rgba(0 0 0/ 0.05);
}

#content{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 0;
}
#content p{
    padding: 10px 15px;
    border-radius: 6px;
}

#note{
    width: 50%;
    margin-left: 0%;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0 0 0/ 0.05);
}
#note p span{
    font-weight: bold;
    color: #721c24;
    font-style: normal;
    font-size: 16px;
}
#note p{
    font-size: 14px;
    color: #721c24;
}

#table{
    margin: 30px 0;
}
.table-striped>tbody>tr:nth-of-type(even){
    background-color: rgb(238, 238, 238);
}
.table-striped>tbody>tr:nth-of-type(odd){
    background-color: #625983;
}
#table table > tbody > tr:nth-of-type(odd) > td > a{
    color: #fff;
}
#table > h4{
    text-transform: capitalize;
    font-size: 16px;
    color: #696088;
}
#table > h4 > i{
    color: #696088;
}
#table table > thead > tr{
    background-color: #3b3b3b;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    width: 100%;
    color: #fff;
}
#table table > thead > tr > th{
    text-align: center;
}
#table table > tbody > tr > td{
    cursor: pointer;
    padding-left: 15px;
    width: 10%;
    transition: all 0.3s ease;
}
#table table > tbody > tr > td:not(:first-child){
    border-left: 1px solid #ddd;
}
#table table > tbody > tr > td:hover{
    background: #d9edf7;
    border-color: #b8daff;
}
#table table > tbody > tr > td > a{
    text-decoration: none;
    color: #3b3b3b;
    transition: all 0.3s ease;
}
#table table > tbody > tr > td:hover > a{
    color: #004085;
}

@media screen and (max-width: 767px) {
    #header h1{
        font-size: 16px;
    }

    #note{
        width: 100%;
    }

    #table > h4{
        text-align: left;
    }
}