/* Modal Overlay */
.psc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content Container */
.psc-modal-content {
    background: #ffffff;
    padding: 30px;
    width: 90%;
    max-width: 550px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.psc-close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.psc-modal-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.psc-modal-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.psc-modal-body table,
.psc-size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.psc-modal-body th,
.psc-modal-body td,
.psc-size-chart-table th,
.psc-size-chart-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.psc-modal-body th,
.psc-size-chart-table th {
    background: #f8f8f8;
    text-transform: uppercase;
}