/* Custom Plan Styles */
.custom-plan .pricing-features {
    padding: 20px;
}

.custom-plan-form {
    padding: 10px 0;
}

.custom-plan-form .form-group {
    margin-bottom: 20px;
}

.custom-plan-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.custom-plan-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.custom-plan-form .form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.price-preview {
    margin-top: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    border-right: 3px solid #3498db;
}

.price-preview span:first-child {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #7f8c8d;
}

#customPrice {
    color: #3498db;
    font-size: 22px;
}

.custom-plan .pricing-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.custom-plan .btn-pricing {
    background: #9b59b6;
    border-color: #9b59b6;
}

.custom-plan .btn-pricing:hover {
    color: #9b59b6;
    background: transparent;
}

/* Responsive styles */
@media (max-width: 768px) {
    .custom-plan-form .form-group {
        margin-bottom: 15px;
    }
    
    .price-preview {
        font-size: 16px;
        padding: 10px;
    }
    
    #customPrice {
        font-size: 20px;
    }
}
