.datapopup-modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.datapopup-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.datapopup-close-button {
    color: #aaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffffff;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 23px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: inline-block;
}

.datapopup-close-button:hover,
.datapopup-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* custom_styles.css */

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

.location-header, .printing-method-header, .image-header, .download-header {
    background-color: #f4f4f4;
    font-weight: bold;
    padding: 8px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.location-cell, .printing-method-cell, .image-cell, .download-cell {
    padding: 8px;
    /* border-bottom: 1px solid #ddd; */
}

.location-cell {
    color: #333;
}

.printing-method-cell {
    color: #666;
}

.image-cell img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 4px;
    cursor: pointer; /* Changes cursor to indicate clickable image */
}

.download-cell a {
    color: #007bff;
    text-decoration: none;
}

.download-cell a:hover {
    text-decoration: underline;
}

.datapopup-modal-content.printing-location-popup-style {
    padding: 20px 15px 15px 15px;
}
.printing-location-popup-style th {
    background-color: #f2f2f2;
    font-weight: 600;
}
.printing-location-popup-style table td, .printing-location-popup-style table th {
    border: 1px solid #dddddd !important;
    text-align: center;
    font-size: 14px;
    padding: 8px;
}
.printing-location-popup-style .datapopup-close-button {
    color: #aaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffffff;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 23px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: inline-block;
}

.printing-location-popup-style .table-thumb{
	border: 1px solid #dddddd;
    padding: 2px;
    display: inline-block;
    border-radius: 4px;
}
.printing-location-popup-style .table-thumb img{
	width: 30px;
    height: 30px;
}