@import url("/manager/Chosen/style.css");
@import url("/manager/Chosen/prism.css");
@import url("/manager/Chosen/chosen.css");

.notif {
    border: 2px dashed #ffc107;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    background-color: #fffbea;
    font-family: "shabnam";
    text-align: center;
}
.product-table span {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-table td {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carttable {
    width: 80%;
    /* overflow-x: auto; */
    margin: 0 auto;
    text-align: center;
}

.product-table .prodview {
    display: flex;
    align-items: center;
    vertical-align: middle;
    gap: 50px;
    padding: 0 20px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: right;
}

.product-table th,
.product-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.product-table td a {
    color: #564741;
    text-decoration: none;
}

.product-table td a:hover {
    color: #f69946;
}

.product-table thead {
    background-color: #f4f4f4;
    font-weight: bold;
}

.product-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-table tbody tr:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}

.product-table img {
    width: 65px;
    height: auto;
    border-radius: 8px;
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quantity div {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.quantity div:hover {
    background-color: #e0e0e0;
}

.quantity .proCNT {
    width: 40px;
    background-color: #fff;
    border: none;
    font-weight: bold;
}

.total td:first-child,
.discountTR td:first-child {
    text-align: left;
}

.payable {
    font-weight: bold;
    color: #f69946;
    font-size: 26px;
}

.payForm textarea {
    display: block;
    width: 90%;
    margin: 20px auto;
    max-width: 800px;
    min-height: 100px;
    padding: 10px;
    font-weight: normal;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}
input[type="text"],
input[type="number"],
select {
    max-width: 800px;
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 10px;
    margin: 10px;
    display: block;
    margin: 20px auto;
}

@media screen and (max-width: 768px) {
    .product-table .prodview {
        flex-direction: column;
        text-align: center;
    }
    .quantity {
        flex-direction: column-reverse;
    }
}
