.table-container-tp2 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

table.tp2 {
    width: 100%;
    border-collapse: collapse;
}

table.tp2 th {
    background-color: #003399;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table.tp2 td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

table.tp2 tr:last-child td {
    border-bottom: none;
}

table.tp2 tr:hover {
    background-color: #f8f9fa;
}

.product-image-tp2 {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.product-title-tp2 {
    font-weight: 500;
    color: #333;
}

.action-button-tp2 {
    background-color: #003399;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.action-button-tp2:hover {
    background-color: #002266;
    color: white;
}

.action-button-tp2:active {
    transform: translateY(1px);
}