/******************************************************************************
 * COPHASAL - Optical Design Software
 *
 * Copyright (c) 2024-2025 XLOPTIX LLC. All rights reserved.
 * This software is furnished under a license agreement and may be used or
 * copied only in accordance with the terms of that agreement.
 *
 * File: style.css
 * Author: Prateek Jain
 * Date: 2025-04-15
 ****************************************************************************/

 body { 
    margin: 0;
    overflow: hidden; /* Prevent scrolling */
    cursor: crosshair; /* Set pointer to crosshair */
}
/* Style for the custom context menu */
#contextMenu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial;
}
#contextMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#contextMenu li {
    padding: 8px 12px;
    cursor: pointer;
}
#contextMenu li:hover {
    background-color: #eee;
}

#coordinates {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-family: Arial, sans-serif
}