@charset "utf-8";
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* เพิ่ม backdrop-filter และปรับ background-color ให้โปร่งใสมากขึ้น */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* สำหรับ Safari */
    background-color: rgba(0,0,0,0.2);
}

.modal-content {
    background-color: #fefefe;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #888;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: sticky;
    top: 10px;
    right: 10px;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}