/* đây là tính ngày và button của tính ngày */
      #dateSelection {
            display: none;
            position: fixed;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            z-index: 1000;
            text-align: center;
            color: black;
        }
        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        #result {
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
            display: block;
        }
        .button-group {
            display: flex;
            gap: 10px;
        }
        #chay_tinhngay, #dong_tinhngay {
            width: 50%;
            padding: 8px;
            font-size: 15px;
            border: none;
            cursor: pointer;
        }