#btrs {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#btrs td,
#btrs th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

/* striped rows */
#btrs tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* hover shading */
#btrs tr:hover {
    background-color: #e6b1b5c5;
}

#btrs th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #7C3030;
    color: white;
}

/* override table css with class="table-ccc" */
table.table-ccc {
    table-layout: auto;
}

@media (min-width: 768px) {
    table.table-ccc {
        table-layout: fixed;
    }
}

.listingcount {
    font-size: larger;
    /* font-style: italic;
    color:#9C0006; */
    padding-top: 7px;
}

.myCheckbox {
    width: 15px;
    height: 15px;
    border: 2px solid #7C3030;
}

.myButton {
    width: auto;
    font-weight: 600;
    border: 2px solid #7C3030;
    border-radius: 6px;
    /* box-shadow: 0 8px 16px 0 #e6b1b5c5, 0 6px 20px 0 #e6b1b5c5; */
}

.myButton:hover {
    background-color: #7C3030;
    color: white;
    /* box-shadow: 0 12px 16px 0 #e6b1b5c5, 0 17px 50px 0 #e6b1b5c5; */
}

.myTextBox {
    border: 2px solid #7C3030;
    width: 120px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    padding: 6px 12px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s
}

.myTextBox:focus {
    border-color: #7C3030;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #7C3030;

    /* this one changes the highlight shadow for dropdown _CCC */
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #7C3030
}


.hover-2 {
    --h: 1.8em;
    /* the height */

    line-height: var(--h);
    color: #0000;
    text-shadow:
        0 var(--_i, var(--h)) #fff,
        0 0 rgb(0 0 0 / var(--_i, 1));
    background:
        linear-gradient(#7C3030 0 0) bottom/100% calc(100% - var(--_i, 1)*100%) no-repeat;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.hover-2:hover {
    --_i: 0;
}