/* Styles for the pop-up overlay */
#helloWorldImportModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    display: none; /* Hidden by default, JavaScript will make it 'flex' to show */
    justify-content: center; /* Center horizontally */
    align-items: center;   /* Center vertically */
    z-index: 10000; /* Ensure it's on top of other Canvas elements */
    overflow: auto; /* Enable scrolling if content is too large */
}

/* Styles for the pop-up content box */
#helloWorldImportModalContent {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%; /* Responsive width */
    text-align: center;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Match Canvas font */
    color: #333;
}

#helloWorldImportModalContent p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Styles for the close button */
#helloWorldImportModalClose {
    background-color: #007bff; /* A common Canvas primary blue */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease; /* Smooth hover effect */
}

#helloWorldImportModalClose:hover {
    background-color: #0056b3; /* Darker blue on hover */
}