/* Product Customizer - Auto-generated CSS */
/* Generated on: 2026-04-19 04:10:01 */

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

.pc-modal-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    font-family: Roboto, sans-serif;
}

.pc-modal-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #eee;
}

.pc-modal-title {
    margin: 0;
    font-family: Roboto, sans-serif;
    color: #333;
    font-size: 1.5em;
}

.pc-customize-button {
    background: #000000 !important;
    border-color: #000000 !important;
    color: white !important;
}

.pc-customize-button:hover,
.pc-customize-button:focus,
.pc-customize-button:active {
    background: #000000 !important;
    border-color: #000000 !important;
    color: white !important;
}

.pc-primary-button {
    background: #007cba !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.pc-primary-button:hover {
    opacity: 0.9 !important;
    transform: translateY(-1px) !important;
}

.pc-secondary-button {
    background: #6c757d !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.pc-secondary-button:hover {
    opacity: 0.9 !important;
}

.pc-accordion-item {
    border: 1px solid #eee;
    margin-bottom: 5px;
    border-radius: 4px;
}

.pc-accordion-header {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
}

.pc-accordion-content {
    padding: 20px;
    display: none;
}

.pc-accordion-content.active {
    display: block;
}

