/* Aryan Chemicals Color Table Widget Styles */

.act-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.act-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dddddd;
    font-size: 14px;
    font-family: inherit;
}

.act-table td,
.act-table th {
    padding: 8px 10px;
    border: 1px solid #dddddd;
    vertical-align: middle;
    line-height: 1.5;
}

/* Header row */
.act-table tr:first-child td {
    background-color: #f8f8f8;
    font-weight: 700;
}

/* Zebra stripes */
.act-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.act-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover */
.act-table tbody tr:not(:first-child):hover {
    background-color: #f0f7ff;
    transition: background 0.15s;
}

/* Shade cell */
.act-shade-cell {
    width: 150px;
    padding: 5px !important;
}

.act-shade-box {
    width: 100%;
    height: 36px;
    border-radius: 3px;
    display: block;
}

/* Product name link */
.act-table td a {
    color: inherit;
    text-decoration: none;
}

.act-table td a:hover {
    color: #e07600;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .act-table {
        font-size: 12px;
    }
    .act-table td {
        padding: 6px 6px;
    }
    .act-shade-cell {
        width: 80px !important;
    }
    .act-shade-box {
        height: 28px;
    }
}
