
.ipsc-trigger-popup {
    display: inline-flex; align-items: center; gap: 5px;
    font-weight: 600; text-decoration: underline; cursor: pointer;
}
.ipsc-button-wrapper { margin: 10px 0; }
.ipsc-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 14px; }
.ipsc-table th, .ipsc-table td { padding: 10px; text-align: center; }
.ipsc-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 999999;
    display: none; align-items: center; justify-content: center;
}
.ipsc-popup-overlay.active { display: flex; }
.ipsc-popup-content {
    background: #fff; width: 90%; max-width: 600px; max-height: 80vh;
    overflow-y: auto; padding: 30px; border-radius: 8px; position: relative;
    animation: ipscFadeIn 0.3s;
}
@keyframes ipscFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ipsc-close-popup {
    position: absolute; top: 10px; right: 10px; background: none;
    border: none; font-size: 28px; cursor: pointer; line-height: 1;
}
