    <style>
        #infoBox {
            background-color: #fffae6;
            border: 1px solid #ffc107;
            padding: 15px;
            margin: 20px;
            border-radius: 8px;
            position: relative;
            transition: box-shadow 0.3s;
            pointer-events: none;
        }
        #infoBox p {
            margin: 0px;
            font-size: 14px;
			padding: 10px;
			font-weight: bold;
			
        }
        #closeInfoBox, #editBtn {
            position: absolute;
            top: 10px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #666;
            pointer-events: all;
        }
        #closeInfoBox { right: 15px; }
        #editBtn { right: 45px; }

        #addInfoBtn {
            margin: 10px 20px;
            cursor: pointer;
            background-color: #fffae6;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
        }
		#reopenButton {
            margin: 10px 20px;
            cursor: pointer;
            background-color: #FFD966;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
        }
        #infoBox.highlight {
            border-color: #ff9800;
            box-shadow: 0 0 10px #ff9800;
			background-color: #fffae6;
        }
        #editForm {
            margin: 20px;
        }
        #editForm textarea {
            width: 100%;
            height: 100px;
            padding: 10px;
            font-size: 16px;
        }
    </style>