.reaction-container {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reaction-item {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.reaction-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.heart-react-button, .like-react-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.heart-react-button:hover, .like-react-button:hover {
    transform: scale(1.2);
}

.heart-react-count, .like-react-count {
    font-size: 18px;
    margin-left: 10px;
    color: #333;
}

.reaction-notification {
    font-size: 14px;
    margin-top: 10px;
}



.pr-plus-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Ensure it's above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.pr-plus-prompt {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 80%;
    position: relative; /* Ensure positioning context for close button */
}

.pr-plus-prompt p {
    margin-bottom: 10px;
}

.pr-plus-prompt input[type="email"] {
    padding: 10px;
    width: calc(100% - 20px);
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.pr-plus-prompt button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pr-plus-prompt button:hover {
    background-color: #45a049;
}

.pr-plus-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
}

.pr-plus-close:hover {
    color: #333;
}
