.speech-bubble {
    position: relative;
    background: #e0f7fa; /* Light blue background for the bubble */
    padding: 10px;
    border-radius: 10px;
    margin-left: 20px; /* Adjust as needed */
    max-width: 650px;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -15px; /* Adjust to position the triangle */
    top: 10px; /* Adjust to align the triangle vertically */

    border-top: 10px solid transparent; /* Triangle size */
    border-bottom: 10px solid transparent; /* Triangle size */
    border-right: 15px solid #e0f7fa; /* Triangle color */
}

#quickGuide {
    display: none;
    position: fixed;
    margin-top: 20px;
    top: 25%;
    left: 48%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 80%;
    width: 700px;
}
#closeGuide {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.lightbulb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.lightbulb-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    max-height: 90%;
    min-width: 300px;
    min-height: 100px;
    overflow: auto;
    position: relative;
    
}