/**
 * Modal Styles for SCN Membership
 * Shared between admin and frontend
 * 
 * @package SCN_Membership
 */

/* Modal Styles */
.scn-modal {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scn-modal-content {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    color: #23282d;
}

.scn-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scn-modal-header h3 {
    margin: 0;
    color: #23282d;
}

.scn-modal-close {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.scn-modal-close:hover {
    color: #000;
}

.scn-modal-body {
    padding: 20px;
}

.scn-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.scn-modal-footer .button {
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scn-modal-content {
        width: 95%;
        max-height: 95%;
    }
}

