.ssc-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: -apple-system, sans-serif;
}

.ssc-preview-container {
    flex: 1;
    text-align: center;
}

#sign-canvas {
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ssc-controls {
    width: 320px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.ssc-field {
    margin-bottom: 20px;
}

.ssc-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

#ssc-text-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

#ssc-color-select,
#ssc-bg-select,
#ssc-glow-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: white;
}

.ssc-price {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0;
    color: #1a1a1a;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #005a87;
}

.btn-outline {
    background: transparent;
    color: #0073aa;
    border: 1px solid #0073aa;
}

.btn-outline:hover {
    background: #f0f8ff;
}

/* Модальное окно */
.ssc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.ssc-modal.active {
    display: flex;
}

.ssc-modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ssc-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}