/* Custom Price Input Styling */
.fcp-custom-price-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.fcp-custom-price-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.fcp-custom-price-wrapper label span {
    font-weight: normal;
    color: #666;
    font-size: 14px;
    margin-left: 8px;
}

.fcp-custom-price-input {
    padding: 12px 15px;
    border: 2px solid #216C73;
    border-radius: 6px;
    font-size: 16px;
    width: 200px;
    transition: all 0.3s ease;
}

.fcp-custom-price-input:focus {
    outline: none;
    border-color: #DCB670;
    box-shadow: 0 0 0 3px rgba(33, 108, 115, 0.1);
}

.fcp-custom-price-wrapper .description {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Currency symbol styling */
.fcp-custom-price-wrapper .currency-symbol {
    font-size: 18px;
    font-weight: 600;
    color: #216C73;
}

/* Responsive */
@media (max-width: 768px) {
    .fcp-custom-price-input {
        width: 100%;
        max-width: 250px;
    }
    
    .fcp-custom-price-wrapper {
        padding: 15px;
    }
}

