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

.wc-sc-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.wc-sc-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Table Styles */
.wc-sc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.wc-sc-table th, .wc-sc-table td {
    padding: 12px;
    border: 1px solid #eee;
}

/* Modern Style */
.sc-style-modern .wc-sc-table thead tr {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}

/* Minimalist Style */
.sc-style-minimalist .wc-sc-table {
    border: none;
}
.sc-style-minimalist .wc-sc-table th, .sc-style-minimalist .wc-sc-table td {
    border: none;
    border-bottom: 1px solid #eee;
}

/* Classic Style */
.sc-style-classic .wc-sc-table th, .sc-style-classic .wc-sc-table td {
    border: 2px solid #000;
}

/* Standard Style */
.sc-style-standard .wc-sc-table thead tr {
    background-color: #a46497; /* WooCommerce Purple */
    color: #fff;
}

/* Unit Switcher */
.wc-sc-unit-switcher {
    margin-bottom: 15px;
}
.sc-unit-btn {
    padding: 5px 15px;
    margin-right: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
}
.sc-unit-btn.active {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .wc-sc-table-wrapper {
        overflow-x: auto;
    }
}
