﻿.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border-radius: 0;
    box-sizing: border-box;
}
/*.modal-header {
    background-image: url(/IMAGES/ADMIN/Title.png);
    background-repeat: repeat-x;
    height:40px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    text-align:center;
}*/
.modal-body {
    padding: 10px;
}
.modal-footer {
    margin-top: 15px;
    padding: 10px;
}
.btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}
.btn-confirm {
    background-image: url(/IMAGES/ADMIN/Title.png);
    background-repeat: repeat-x;
    height: 32px;
    line-height:32px;
    width: 100px;
    border-radius: 5px;

    border:1px solid whitesmoke;
    text-align: center;
    color: white;
    font-style: italic;
    font-size: 15px;

}
.btn-cancel {
    border-radius: 3px;
    background-color: red;
    border:1px solid whitesmoke;
    border-radius: 5px;
    color: white;
    font-style: italic;
    font-size: 15px;
    height: 32px;
    line-height:32px;
    width: 100px;
}
.btn2_NgayDathang {
    background-image: url(/IMAGES/ADMIN/Title.png);
    background-repeat: repeat-x;
    border-radius: 5px;
    padding: 2px;
    height: 32px;
    line-height: 32px;
    min-width: 270px;
    border: 1px solid whitesmoke;
    text-align: center;
    color: white;
    font-style: italic;
    font-size: 15px;
}
.btn1_Modal {
    border-radius: 5px;
    padding: 2px;
    height: 32px;
    line-height: 32px;
    min-width: 270px;
    border: 1px solid whitesmoke;
    text-align: center;
    font-style: italic;
    font-size: 15px;
}

/*===========================================================*/
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        max-width: 350px;
    }
}
#speechText {
    width: 100%;
    height: 100px;
    font-size: 16px;
    box-sizing: border-box;
}
.highlight {
    background-color: yellow;
    font-weight: bold;
}
/*----------- them ngay 31/05/2026 Autocomplete -------------*/
.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
}

    .product-card:hover, .selected {
        background-color: #e0e0e0;
        color: black;
        cursor: pointer;
    }

.product-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-name {
    font-weight: bold;
    color: #333;
}

.product-price {
    color: blue;
    font-weight: bold;
}

.product-id {
    color: #777;
    font-size: 12px;
}

.product-note {
    font-size: 13px;
    color: #777;
    padding-top: 5px;
    /*border-top: 1px solid #ddd;*/
    text-align: left;
    padding-left: 3px;
}