.TargetAreaTool-svg svg {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}


.popup-message {
    position: absolute;
    background: #007bff;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1000;
}

/* Match the correct class name */
.TargetAreaTool-svg ellipse:hover {
  fill: #007bff !important;
  transform: scale(1.15);
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.selection-instructions {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    color: #333;
}

.submit-areas {
    display: block;
    margin: 10px auto;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.submit-areas:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.TargetAreaTool-svg ellipse.selected {
    fill: #28a745 !important; /* Green highlight */
    transform: scale(1.15);
    transform-origin: center;
    transition: transform 0.2s ease;
}


