/* Popup overlay */
#readMorePopup {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}
/* Popup content styling */
.popup-content {
background: #fff;
padding: 20px;
width: 90%;
max-width: 700px;
max-height: 80vh;
overflow-y: auto;
border-radius: 8px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
/* Close button styling */
.close-button {
position: absolute;
top: 10px;
right: 10px;
background: transparent;
border: none;
font-size: 24px;
cursor: pointer;
}
/* Scrollbar styling for popup content */
.popup-content::-webkit-scrollbar {
width: 10px;
}
.popup-content::-webkit-scrollbar-thumb {
background: #888;
border-radius: 5px;
}
.popup-content::-webkit-scrollbar-thumb:hover {
background: #555;
}