.comment-widget .comment-float {
    position: fixed;
    top: 50%;
    transform: translateY(-20px);
    right: var(--spacing-small);
    width: 40px;
    height: 40px;
    background-color: #8b5cf6;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 2px 2px 3px #999;
    padding: calc(var(--spacing-small) / 2);
}

/* Modal background overlay */
.modal-comment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Modal content */
.comment-card {
    background: white;
    width: 60%;
    max-width: 800px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Close button */
#comment-close {
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
}

.ph-x-circle {
    font-size: 24px;
}

.ph-chat-circle-dots {
    font-size: 24px;
}

.comment-card iframe {
    width: 100%;
    height: 80vh !important;
    border: none;
    overflow: auto;
}

.disable-pointer {
    pointer-events: none;
}
