.ssplug-org-details {
    background: var(--org-secondary, #f8f8fc);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(40,80,60,0.07);
    padding: 2em 2.5em;
    margin-bottom: 2em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.select2-container {
    z-index: 9999 !important;
}

.select2-dropdown {
    z-index: 10000 !important;
}

.ssplug-org-details img {
    display: block;
    margin: 0 auto 1.5em auto;
    max-width: 220px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(40,80,60,0.08);
}

.ssplug-org-title {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: 2em;
    color: var(--org-primary, #2a6);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.ssplug-org-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
    font-size: 1.08em;
}

.ssplug-org-meta li {
    margin-bottom: 0.7em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #eaeaea;
}

.ssplug-org-meta li:last-child {
    border-bottom: none;
}

.ssplug-org-edit-btn {
    display: block;
    margin: 1.5em auto 0 auto;
    padding: 0.7em 2em;
    font-size: 1em;
    border-radius: 6px;
    background: var(--org-primary, #2a6);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(40,80,60,0.08);
    transition: background 0.2s;
    text-align: center;
}

.ssplug-org-edit-btn:hover {
    background: #1e4d3a;
    color: #fff;
    text-decoration: none;
}

.ssplug-org-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40,60,80,0.35);
    z-index: 9998;
    display: block;
}
.ssplug-org-modal {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    padding: 2em 1.5em 1.5em 1.5em;
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
    box-sizing: border-box;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(40,60,80,0.18);
    display: block;
}
@media (max-width: 600px) {
    .ssplug-org-modal {
        padding: 1em 0.5em;
        max-width: 98vw;
    }
}