/* Shopping Security Modal Styles */
.wc-ss-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.wc-ss-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.wc-ss-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 4px;
    position: relative;
    z-index: 1000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

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

.wc-ss-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.wc-ss-close {
    color: #999;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.wc-ss-close:hover,
.wc-ss-close:focus {
    color: #333;
}

.wc-ss-modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 14px;
    color: #555;
}

/* Recommended styling for content lists based on mockup */
.wc-ss-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-ss-modal-body ul li {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    line-height: 1.5;
}

.wc-ss-modal-body ul li:last-child {
    border-bottom: none;
}

.wc-ss-modal-body strong {
    color: #333;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}
