.page-template-user-sessions-php header{
    display:none!important;
}

.container-msp {
    width: 1000px;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    padding-top: 100px;
}

.container-msp h1 {
    font-family: Arial, sans-serif;
    color: black;
    font-size:25px;
    text-align:center;
    margin-top:25px;
    margin-bottom:10px;
}

.container-msp h3 {
    font-family: Arial, sans-serif;
    color: black;
    font-size:18px;
    margin-top:25px;
}

.container-msp table {
    font-family: Arial, sans-serif;
    color: black;
    border: 1px solid grey;
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

.container-msp table th,
.container-msp table td {
    border: 1px solid grey;
    padding: 8px;
}

.container-msp table th {
    text-align: center;
    font-size: 12px;
}

.container-msp form {
    text-align:center;
    margin-top:15px;
}
.container-msp table td {
    text-align: center;
    font-size: 11px;
}

.container-msp input[type=submit].button-primary {
    background-color: #7CCD7C; /* light green color */
    color: white;
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 2px;
}


@media screen and (max-width: 900px) {
    .container-msp{
        width:100%;
        padding-left:15px;
        padding-right:15px;
    }
  }
  

  @media screen and (max-width: 800px) {
    .container-msp table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .container-msp table td,
    .container-msp table th {
      display: block;
      width: 100%;
    }
  }
  