.tshproduct-div {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.tshproduct-into-div {
    border-radius: 10px;
}

.tshproduct-table {
    border-radius: 10px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: inherit;
    background: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.tshproduct-table thead th {
    top: 0;
    position: sticky;
    background-color: rgba(67, 129, 212, 1);
    color: #fff;
    font-weight: 600;
    border-color: rgba(67, 129, 212, 1);
    padding: 16px 20px;
    text-align: right;
    font-size: 14px;
}

.tshproduct-table thead th:first-child {
    border-top-right-radius: 10px;
}
.tshproduct-table thead th:last-child {
    border-top-left-radius: 10px;
}

.tshproduct-table tbody tr {
    transition: background-color 0.2s ease;
}

.tshproduct-table tbody tr:nth-child(even) {
    background-color: rgba(67, 129, 212, 0.05);
}
.tshproduct-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.tshproduct-table tbody tr:hover {
    background-color: rgba(67, 129, 212, 0.1);
}

.tshproduct-table td {
    padding: 16px 20px;
    font-size: 13px;
    color: #666;
    vertical-align: middle;
    border: none;
}

.tshproduct-table tbody tr:last-child td:first-child {
    border-bottom-right-radius: 10px;
}
.tshproduct-table tbody tr:last-child td:last-child {
    border-bottom-left-radius: 10px;
}
