.list_hide_page_table {
    color: #333;
    font-family: "Open Sans",sans-serif;
    width: 640px;
    border-collapse: collapse; 
    border-spacing: 0;
    border:1px;
    margin-top: 24px;
    box-shadow: 1px 1px 5px #ccc;
}

.list_hide_page_table td, .list_hide_page_table th {
    border: 1px solid #ccc; /* No more visible border */
    height: 30px;
    transition: all 0.3s;  /* Simple transition for hover effect */
}

.list_hide_page_table th {
    background: #DFDFDF;  /* Darken header a bit */
    font-weight: bold;
}

.list_hide_page_table td {
    background: #FAFAFA;
    text-align: center;
}

/* Cells in even rows (2,4,6...) are one color */
.list_hide_page_table tr:nth-child(even) td { background: #F1F1F1; }  

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */
.list_hide_page_table tr:nth-child(odd) td { background: #FEFEFE; } 

.list_hide_page_table tr td:hover { background: #ccc; color: #FFF; } /* Hover cell effect! */


.hide_page_seletion_id
{
    cursor: pointer;
    height:33px !important;
    border-radius: 3px;
    border: 1px solid #CCC;
    font-weight: 200;
    font-size: 15px;
    box-shadow: 1px 1px 5px #CCC;
}

.hide_page_id_submit{
    font-family: "Open Sans",sans-serif;
    background: #0073aa;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 1px 1px 5px #ccc;
    cursor:pointer;
}