.custom-table-2 {
    width: 780px;
    max-width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    border: 1px solid #dcdcdc;
}

/* Table header */
.custom-table-2 thead th {
    background-color: #95081a;
    color: #ffffff;
    padding: 16px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #95081a;
    border-right: 1px solid #95081a;
}

.custom-table-2 thead th span {
    color: #ffffff;
}

.custom-table-2 tbody {
    border: 3px solid #ececec;
}

/* Table body cells */
.custom-table-2 tbody td {
    padding: 16px;
    border: 1px solid #ddd;
}

/* Odd rows */
.custom-table-2 tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Even rows */
.custom-table-2 tbody tr:nth-child(even) {
    background-color: #f7f1e880;
}

@media (max-width: 1024px) {

    .custom-table-1 {
        width: 100%;
        /* fills wrapper (90% of inner-container) */
    }
}

@media (max-width: 767px) {

    /* use 320px table inside phone viewport for consistent look */
    .custom-table-2 {
        font-size: 16px;
    }

}

/* Safety: avoid table overflow on extremely narrow screens */
@media (max-width: 320px) {
    .custom-table-2 {
        width: 100%;
    }
}

.border-none tr td {
    border: none !important;
}
.table-border {
    border: 2px solid #ececec !important;
}