
.clp-box {
    border: 1px solid #cbd5e1;
    background: #eef3f7;
    padding: 20px;
    border-radius: 8px;
}

.clp-checkbox {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clp-eye-section {
    margin-bottom: 25px;
}

.clp-eye-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.eye-number {
    background: #8bc34a;
    color: #fff;
    border-radius: 50%;
    padding: 4px 9px;
    font-size: 12px;
    margin-right: 6px;
}

.clp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.clp-grid div {
    display: flex;
    flex-direction: column;
}

.clp-grid label {
    font-size: 12px;
    margin-bottom: 4px;
    color: #333;
    white-space: nowrap;
}

.clp-grid select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 13px;
    transition: 0.2s;
}

.clp-grid select:focus {
    border-color: #0073aa;
    outline: none;
}

.clp-box {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.clp-grid select {
    appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 20 20' width='20'><path d='M5 7l5 5 5-5z'/></svg>") no-repeat right 8px center;
    background-size: 16px;
}

.clp-axis:disabled {
    background: #f1f1f1;
    cursor: not-allowed;
    opacity: 0.7;
}

.clp-dynamic-price {
    margin-top: 15px;
    font-size: 18px;
    color: #2c7be5;
    background: #eef4ff;
    padding: 10px;
    border-radius: 6px;
}
/* Responsive */
@media (max-width: 768px) {
    .clp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#clp-single-degree {
    display: none;
}

.clp-wrapper {
    margin-bottom: 20px;
}

.clp-axis-field {
    display: flex !important;
    flex-direction: column;
}

.clp-axis {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}