    .table-responsive {
        overflow-x: auto;
        padding: 20px;
    }

    .product-table {
        width: 100%;
        border-collapse: collapse;
        background-color: #f9f9f9;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .product-table th, .product-table td {
        padding: 15px;
        text-align: left;
        font-size: 16px;
        vertical-align: middle;
    }

    .product-table th {
        background-color: #343a40;
        color: white;
        text-transform: uppercase;
    }

    .product-table tr:nth-child(odd) {
        background-color: #f2f2f2;
    }

    .product-table tr:hover {
        background-color: #dcdcdc;
    }

    .product-table td {
        border-bottom: 1px solid #e0e0e0;
    }

    .btn-black-border {
        border: 2px solid #343a40;
        padding: 8px 16px;
        text-decoration: none;
        font-size: 14px;
        color: #343a40;
        background-color: white;
        transition: background-color 0.3s, color 0.3s;
    }

    .btn-black-border:hover {
        background-color: #343a40;
        color: white;
    }

    .icon {
        margin-right: 8px;
        color: #17a2b8;
    }

    .text-heading-1 {
        font-size: 24px;
        font-weight: bold;
        color: #343a40;
        text-align: center;
        margin-bottom: 20px;
    }

    .color-gray-900 {
        color: #343a40;
    }