.nist-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color:black;
}
.nist-cart-table th, .nist-cart-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.nist-cart-table th {
    background-color: #f4f4f4;
    color: black;
}

.nist-cart-container, .cart-totals p, .cart-item .nist-cart-table td {
    color:black !important;

}
.quantity-input {
    width: 60px;
}
.remove-item {
    background-color: #ff4d4d;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.remove-item:hover {
    background-color: #cc0000;
}
.cart-totals {
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}
.cart-totals p {
    margin: 5px 0;
}


/* Highlight included/free items */
.nist-cart-table .included-item {
    background-color: #f9f9f9;
    color: #555;
    font-style: italic;
}

.nist-cart-table .included-item td:first-child::before {
    content: "★ "; /* Optional icon before name */
    color: #f39c12;
}

#cart-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* faded background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* make sure it's above everything */
}

.cart-loader-spinner {
    width: 60px;               /* keep your desired size */
    height: 60px;
    background-image: url('loader.png'); /* your PNG file */
    background-size: contain;   /* make it fit inside the div */
    background-repeat: no-repeat;
    background-position: center;
    border: none;               /* remove the previous border spinner */
    animation: spin 1s linear infinite; /* keep rotation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}