/* 여기에 작업 또는 수정할 당신의 css style을 설정하세요. (customizations) */

/* 포인트 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.point-modal h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.point-info {
    margin: 20px 0;
}

.point-info p {
    margin: 10px 0;
    font-size: 16px;
}

.point-info strong {
    color: #007bff;
    font-size: 18px;
}

.point-actions {
    text-align: right;
    margin-top: 20px;
}

.point-actions button {
    margin-left: 10px;
}