.cc-fa42a238-container {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

.cc-fa42a238-title {
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
    color: #333;
}

.cc-fa42a238-configurator {
    margin-bottom: 32px;
}

.cc-fa42a238-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.cc-fa42a238-row:last-child {
    border-bottom: none;
}

.cc-fa42a238-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #555;
}

.cc-fa42a238-icon {
    margin-right: 12px;
    font-size: 1.2em;
}

.cc-fa42a238-controls {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 4px;
    border: 1px solid #ddd;
}

.cc-fa42a238-ctrl-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cc-fa42a238-ctrl-btn:hover {
    background: #f0f0f0;
}

.cc-fa42a238-item-val {
    width: 40px;
    text-align: center;
    font-weight: 600;
    color: #000;
}

.cc-fa42a238-form-group {
    margin-bottom: 16px;
}

.cc-fa42a238-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9em;
    color: #555;
}

.cc-fa42a238-form-group input,
.cc-fa42a238-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.cc-fa42a238-btn {
    width: 100%;
    padding: 14px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cc-fa42a238-btn:hover {
    opacity: 0.9;
}

.cc-fa42a238-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cc-fa42a238-msg {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.cc-fa42a238-msg.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cc-fa42a238-msg.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}