
/* Overlay hidden by default to prevent flash */
#investor-popup.igp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Modal */
#investor-popup .igp-modal {
    background: #ffffff;
    width: 80%;
    max-width: 1100px;
    padding: 30px;
    box-sizing: border-box;
}

/* Tabs */
#investor-popup .igp-tabs {
    margin: 20px 0;
}

#investor-popup .igp-tab {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background: #eee;
    cursor: pointer;
}

#investor-popup .igp-tab.active {
    background: #0b2a4a;
    color: #fff;
}

/* Content */
#investor-popup .igp-content {
    display: none;
}

#investor-popup .igp-content.active {
    display: block;
}

/* Scroll Box */
#investor-popup .igp-scroll {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 15px;
}

/* Accept Button */
#investor-popup .igp-accept-wrap {
    text-align: center;
    margin-top: 20px;
}

#investor-popup #igp-accept-btn {
    padding: 10px 30px;
    background: #d9534f;
    color: #fff;
    border: none;
    cursor: not-allowed;
    opacity: 0.5;
}

#investor-popup #igp-accept-btn.enabled {
    cursor: pointer;
    opacity: 1;
}
